diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-12-26 21:22:23 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-12-26 21:22:23 +0100 |
commit | f5332b2c7bbf6128de5f2467560e808d8d8d41f3 (patch) | |
tree | 525e5f94604d30dff69469d9b88daadb202ea8ad /lib/expression/t.mli | |
parent | 39f39919fb4749787393e95503f9814912265a73 (diff) |
Added a cmp function
Diffstat (limited to 'lib/expression/t.mli')
-rw-r--r-- | lib/expression/t.mli | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/expression/t.mli b/lib/expression/t.mli index 840805d..3cd5d23 100644 --- a/lib/expression/t.mli +++ b/lib/expression/t.mli @@ -32,15 +32,16 @@ and binary_operator = | Or and funct = - | Upper + | Cmp | Trim + | Upper val cmp : ('a -> 'a -> int) -> 'a t -> 'a t -> int (** Compare two expressions *) val fold_values : f:('b -> 'a -> 'b) -> init:'b -> 'a t -> 'b (** Fold over all the path presents inside the expression. Used for example to - identify all the columns to extract from the file. + identify all the columns to extract from the file. The order is not guarantee to follow the order from the expression *) |