List-oo

 view release on metacpan or  search on metacpan

lib/List/oo.pm  view on Meta::CPAN

  ...
  $l->map(λ{...});

(If the above doesn't render as the greek character lambda, your pod
viewer is not playing nice.)

=back

=cut

sub F (&) {
  my $sub = CORE::shift(@_);
  @_ and croak;
  UNIVERSAL::isa($sub, 'CODE') and return($sub);
  eval($sub->isa('List::oo')) and croak 'not a method';
  croak('why bother');
} # end subroutine F definition
########################################################################

=head1 List Methods



( run in 2.750 seconds using v1.01-cache-2.11-cpan-4ab04211f4c )