Skip to content

Commit

Permalink
fix bitset example
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pecl/judy/trunk@328032 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
nicolas committed Oct 15, 2012
1 parent d69a177 commit 37d1ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/judy-bench-bitset.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function __convert($size)
$s=microtime(true);
$judy = new Judy(Judy::BITSET);
for ($i=0; $i<$v; $i++)
$judy[$i];
$judy[$i] = true;
var_dump($judy[100]);
unset($judy[102]);
var_dump($judy[102]);
Expand Down

0 comments on commit 37d1ddd

Please sign in to comment.