package batteries

  1. Overview
  2. Docs
A community-maintained standard library extension

Install

Dune Dependency

Authors

Maintainers

Sources

v3.9.0.tar.gz
md5=ea26b5c72e6731e59d856626049cca4d
sha512=55975b62c26f6db77433a3ac31f97af609fc6789bb62ac38b267249c78fd44ff37fe81901f1cf560857b9493a6046dd37b0d1c0234c66bd59e52843aac3ce6cb

doc/batteries.unthreaded/BatPathGen/module-type-StringType/index.html

Module type BatPathGen.StringTypeSource

This signature lists few basic operations provided by all string types.

The actual implementation may use any (coherent) scheme of indexing of strings. Below the term 'indexing unit' can stay either for byte or character (or whatever employed by the implementation). This determines meaning of all int arguments and results (excluding result of compare).

Sourcetype t

Type for strings.

Sourceval length : t -> int

Length - number of indexing units

Sourcetype tchar

Character type used by t.

Sourceval get : t -> int -> tchar

Usual get function.

Sourceval lift_char : char -> tchar

Convert Latin-1 character to tchar.

Sourceval lift : string -> t

Convert from UTF-8 string of primitive string type.

Sourceval to_string : t -> string

Convert to primitive string with UTF-8 content.

Sourceval concat_with_separators : t -> t list -> t

concat_with_separators sep lst catenates all n elements of lst inserting (n-1) copies of sep in between.

Sourceval compare : t -> t -> int

Usual comparison function.

Sourceval iter : (tchar -> unit) -> t -> unit
Sourceval iteri : (int -> tchar -> unit) -> t -> unit
Sourceval sub : t -> int -> int -> t

As String.sub, but indexed in specific way.

Sourceval rindex : t -> char -> int
Sourcemodule Parse : sig ... end
OCaml

Innovation. Community. Security.