summaryrefslogtreecommitdiff
path: root/checklink/Library.ml
diff options
context:
space:
mode:
Diffstat (limited to 'checklink/Library.ml')
-rw-r--r--checklink/Library.ml3
1 files changed, 3 insertions, 0 deletions
diff --git a/checklink/Library.ml b/checklink/Library.ml
index ebcbac8..f6b1883 100644
--- a/checklink/Library.ml
+++ b/checklink/Library.ml
@@ -161,3 +161,6 @@ let sorted_lookup (compare: 'a -> 'b -> int) (arr: 'a array) (v: 'b): 'a option
then sorted_lookup_aux i_from (i_mid - 1)
else Some(arr.(i_mid))
in sorted_lookup_aux 0 (Array.length arr - 1)
+
+let list_false_indices a =
+ filter_some (Array.(to_list (mapi (fun ndx b -> if b then None else Some(ndx)) a)))