Help for this page

Select Code to Download


  1. or download this
    sub from_cache2 {
        my $ticker = shift;
        return [ map unpack("A10FFFFL", $_), $cache2{$ticker} ];
    }
    
  2. or download this
    
    sub from_cache {
    ...
        return [ map [unpack("A10FFFFL", $_)], @$ref ];
    }