ocaml-standard-library/lib/bool.ml

8 lines
110 B
OCaml
Raw Permalink Normal View History

open General
2022-01-20 09:07:42 +00:00
let of_string = function
| "true" -> Some true
| "false" -> Some false
| _ -> None