Help for this page

Select Code to Download


  1. or download this
    package Wrap::PDL;
    
    ...
    }
    
    1;
    
  2. or download this
    my $has_PDL = eval "use Wrap::PDL qw(my_method); 1";
    
    ...
    {
      my_method(0, 0, $value);
    }
    
  3. or download this
    my $has_PDL = eval {
      require Wrap::PDL;
      Wrap::PDL->import(qw(my_method));
      1;
    }