in reply to Re^3: Inherit custom sort method from base class
in thread Inherit custom sort method from base class

That worked great! Thanks for the assist :)

sort { $self->specialSort(my ($a,$b)) } @{$self->{things}} # ...my, because use strict is in play

Replies are listed 'Best First'.
Re^5: Inherit custom sort method from base class
by vsespb (Chaplain) on Oct 01, 2013 at 23:54 UTC
    Hm. Strange. It should work without "my", and should not work with "my".
      It should work without "my", and should not work with "my".

      Ditto that.

        Well, the posted sub specialSort uses $a and $b it doesn't use @_, so  specialSort(qw/ anything here doesnt matter its not used /)