http://qs321.pair.com?node_id=855331


in reply to Perl6: Smartmatch scalar to array

 $scalar ~~ any(@array)
does what you meant, don't know if it's supposed to be the default though.

Replies are listed 'Best First'.
Re^2: Perl6: Smartmatch scalar to array
by TimToady (Parson) on Aug 16, 2010 at 20:14 UTC
    Indeed, it is precisely because Perl 6 has junctions that we do not need to assume junctional semantics on smartmatched lists; Perl 5 does not have junctions, so it does assume that. Instead, Perl 6 can use a list to smartmatch another list, which is also a useful behavior--especially since wildcards are supported. For instance, (1,2,3,4,5) ~~ (*,2,3,*) returns true.

      Thanks. I had assumed that smartmatch would be identical between Perl 5 and Perl 6, but I like the Perl 6 way better. It seems more maintainable.

      Also, thanks for all of your work on all of the Perls.

Re^2: Perl6: Smartmatch scalar to array
by molecules (Monk) on Aug 16, 2010 at 18:38 UTC
    Thanks. That also makes the intent clearer.