CString
module type ExtS = sig ... end
include ExtS
We include the standard library
Equality on strings
Remove the eventual first surrounding simple quotes of a string.
Quote a string according to Coq conventions (i.e. doubling double quotes and surrounding by double quotes)
Unquote a quoted string according to Coq conventions (i.e. removing surrounding double quotes and undoubling double quotes); returns None
if not a quoted string
replace HTML reserved characters with escape sequences, e.g. `&` -> "&"
As index_from
, but takes a string instead of a char as pattern argument
As contains
, but takes a string instead of a char as pattern argument
conjugate_verb_to_be
returns "is" when n=1
and "are" otherwise
is_sub p s off
tests whether s
contains p
at offset off
.
*
module Pred : Predicate.S with type elt = t
module List : CList.MonoS with type elt = t
Association lists with string
as keys