```{index} single: nomethod; version function ``` ```{index} single: version::nomethod; Perl function ``` # nomethod Catch-all handler for overloaded operators with no dedicated method. This is the `nomethod` hook and the `((` marker that `overload` installs in the `version` package. It always returns `undef`, which signals Perl's overload machinery to fall back to auto-generation from `<=>` and `cmp` — which is exactly what the module wants. User code normally never calls this directly. ## Differences from upstream Fully compatible with upstream version {{ upstream.version }}. ## See also - `vcmp` — the method everything ultimately falls back to