Help for this page

Select Code to Download


  1. or download this
            for(0 .. $tf)
            {
                my $last=vec ($wektor, $index++, 32);
                            $pos{$docID}{$last}=$order;
            }
    
  2. or download this
        $pos{$docID}{vec($wektor, $index++, 32)}=$order for 0 .. $tf;
    
  3. or download this
        $pos{$docID} ||= {};
        my $did_ref = $pos{$docID};
        $did_ref->{vec($wektor, $index++, 32)}=$order for 0 .. $tf;