ReasonML is built upon OCaml, and much of OCaml stdlib is available on ReasonML. However, ExtString is not one of them.
I'm in need of using ExtString.exists to verify if a substring sub
exists within a string str
. I know that I can make my own function, as explained here, but I'm wondering if there's any way I can import ExtString from or OCaml, or if there's a equivalend module on stdlib that I didn't realize.