in reply to Checking number of values returned

Perl is a dynamic language and this kind of static typing with compile time checking belongs to Java or Haskell.

Theoretically you could do runtime checking by replacing your function with a wrapper in the middle checking

  • the returned values from the original
  • parsing the code of the calling code line.

    The wrapper could be installed by an attribute.

    But I doubt the outcome justifies the effort, cause it'll come with notable performance loss for an unusual case.

    You should rather question your strategy if you're passing around too many positional parameters.

    Smells a bit like an XY problem...

    Cheers Rolf

    PS: Je suis Charlie!