string_ext.ml
ocamlformat
ocamlformat.format_
ocamlformat.ocaml_common
ocamlformat.ocamlformat_stdlib
ocamlformat.parser_extended
ocamlformat.parser_recovery
ocamlformat.parser_shims
ocamlformat.parser_standard
ocamlformat.rpc
ocamlformat.rpc_lib_protocol
1 2 3 4 5 6 7 include Base include String let starts_with_whitespace s = (not (is_empty s)) && Char.is_whitespace s.[0] let ends_with_whitespace s = (not (is_empty s)) && Char.is_whitespace s.[length s - 1]
1 2 3 4 5 6 7
include Base include String let starts_with_whitespace s = (not (is_empty s)) && Char.is_whitespace s.[0] let ends_with_whitespace s = (not (is_empty s)) && Char.is_whitespace s.[length s - 1]