module Compare: sig
.. end
val value : Toml.Value.value -> Toml.Value.value -> int
Given two Toml values, return -1
, 0
or 1
depending on whether the
first is smaller, equal or greater than the second
Since 2.0.0
val array : Toml.Value.array -> Toml.Value.array -> int
Given two Toml arrays, return -1
, 0
or 1
depending on whether the
first is smaller, equal or greater than the second
Since 2.0.0
val table : Toml.Value.table -> Toml.Value.table -> int
Given two Toml tables, return -1
, 0
or 1
depending on whether the
first is smaller, equal or greater than the second
Since 2.0.0