Help for this page

Select Code to Download


  1. or download this
    promise(\ my $result_of_long_compute, sub {
      # Long computation here
    });
    
  2. or download this
    sub promise {
      my ($to_tie, $implement, $opts);
    ...
      elsif (UNIVERSAL::isa($to_tie, 'HASH')) {
        ...
    }