Help for this page

Select Code to Download


  1. or download this
      DB<194> @a=1..5
     => (1, 2, 3, 4, 5)
    ...
    
      DB<198> any {$_ eq 3 } @a
     => undef
    
  2. or download this
      DB<210> sub any (&\@) { &List::Util::first } 
    
    ...
    
      DB<217>  any {$_ eq 5 } @a
     => 5