in reply to Re: Re: Accessing Subroutine Arguments
in thread Accessing Subroutine Arguments

If a sub takes only two params, and is not part of the public interface, it's a judgement call based on the likelihood of that sub growing in the future. If it's part of the public interface, I would used named params even if there was only a single one. It's insurance against changing a bunch of other classes later on.
  • Comment on Re: Re: Re: Accessing Subroutine Arguments