@BNAndras as discussed in https://github.com/exercism/gdscript/issues/28, if the value is not found, we expect to receive a null. I've checked that the original Array.bsearch method in GDScript returns false in the same situation, so we're not far off :P
Do we want to return false then? It makes sense to match what’s already in the standard library. On the various Lisp language tracks, that’s what they do.
@BNAndras as discussed in https://github.com/exercism/gdscript/issues/28, if the value is not found, we expect to receive a null. I've checked that the original
Array.bsearch
method in GDScript returns false in the same situation, so we're not far off :P