10 lines
239 B
Text
10 lines
239 B
Text
1 2 3 4 5
|
|
3 bsearch . ( => 2 )
|
|
5 bsearch . ( => 0 )
|
|
'sam 'tom 'kenny ( must be sorted before calling bsearch )
|
|
sort
|
|
.s ( => kenny sam tom )
|
|
'sam bsearch . ( => 1 )
|
|
'tom bsearch . ( => 0 )
|
|
'kenny bsearch . ( => 2 )
|
|
'tony bsearch . ( => -1)
|