ocaml-standard-library/lib/string.mli

15 lines
386 B
OCaml
Raw Normal View History

2022-01-05 06:51:48 +00:00
(** Concatenates two strings together in the provided order. *)
val ( + ) : string -> string -> string
(** Calculates the length of the provided string. *)
2022-01-20 09:07:42 +00:00
val length : string -> int
(** Converts an int to a string. *)
val of_int : int -> string
(** Converts a float to a string. *)
val of_float : float -> string
(** Converts a boolean to a string. *)
val of_bool : bool -> string