We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d19992 commit 7dcfeeeCopy full SHA for 7dcfeee
1 file changed
src/absil/illib.fs
@@ -264,10 +264,6 @@ module List =
264
let rec loop i xs = match xs with [] -> false | h :: t -> f i h || loop (i+1) t
265
loop 0 xs
266
267
- let existsTrue (xs: bool list) =
268
- let rec loop i xs = match xs with [] -> false | h :: t -> h || loop (i+1) t
269
- loop 0 xs
270
-
271
let lengthsEqAndForall2 p l1 l2 =
272
List.length l1 = List.length l2 &&
273
List.forall2 p l1 l2
0 commit comments