package octez-libs
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053
doc/octez-libs.stdlib/Tezos_stdlib/Compare/List_length_with/index.html
Module Compare.List_length_with
Source
Compare.List_length_with.(l = n)
iff l
is of length n
. In other words iff Stdlib.List.compare_length_with l n = 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.(l <> n)
iff l
is not of length n
. In other words iff Stdlib.List.compare_length_with l n <> 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.(l < n)
iff l
is of length strictly less than n
. In other words iff Stdlib.List.compare_length_with l n < 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.(l <= n)
iff l
is of length less than n
. In other words iff Stdlib.List.compare_length_with l n <= 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.(l >= n)
iff l
is of length greater than n
. In other words iff Stdlib.List.compare_length_with l n >= 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.(l > n)
iff l
is of length strictly greater than n
. In other words iff Stdlib.List.compare_length_with l n > 0
. Note that, like compare_length_with
, this comparison does not explore the list l
beyond its n
-th element.
Compare.List_length_with.compare
is an alias for Stdlib.List.compare_length_with
.
Compare.List_length_with.equal
is an alias for Compare.List_length_with.( = )
.