Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit 22cbe13

Browse files
forkinosami
authored andcommitted
Remove unused code (dotnet#9335)
1 parent b2f90ac commit 22cbe13

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/absil/illib.fs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,6 @@ module List =
264264
let rec loop i xs = match xs with [] -> false | h :: t -> f i h || loop (i+1) t
265265
loop 0 xs
266266

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-
271267
let lengthsEqAndForall2 p l1 l2 =
272268
List.length l1 = List.length l2 &&
273269
List.forall2 p l1 l2

0 commit comments

Comments
 (0)