Skip to content

Commit 070559a

Browse files
committed
fix: add examples ⬇️
1 parent a8eed19 commit 070559a

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

package/Query/BinaryQuery.php

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,22 @@ function BinaryQueryRecursive(array $container,$search,$low = 0,$top = 'default'
5757
}
5858
}
5959

60-
// var_dump( BinaryQueryRecursive([0,1,2,3,4,5,6,7,8,9],9) );
60+
var_dump( BinaryQueryRecursive([0,1,2,3,4,5,6,7,8,9],9) );
61+
/*
62+
array(7) {
63+
[0] =>
64+
int(3)
65+
[1] =>
66+
int(4)
67+
[2] =>
68+
int(5)
69+
[3] =>
70+
int(6)
71+
[4] =>
72+
int(7)
73+
[5] =>
74+
int(8)
75+
[6] =>
76+
int(9)
77+
}
78+
*/

0 commit comments

Comments
 (0)