List.find_opt missing from docs
"For example, List.find has the option-returning counterpart List.find_opt, which doesn't throw." (https://reasonml.github.io/guide/language/exception)
yet List.find_opt is missing from
https://bucklescript.github.io/bucklescript/api/Js.List.html
and
https://reasonml.github.io/api/List.html
List.find_opt was added in OCaml version4.05 (source). As far as I'm aware, BuckleScript only support OCaml version 4.02.3.
That means that List.find_opt probably isn't available yet in Reason
Shouldn't it be removed from the docs then?
I think the new recommended way is to use Belt.List which uses options no?