We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6032264 commit 784ff41Copy full SHA for 784ff41
src/FSharpPlus/Data/ZipList.fs
@@ -5,10 +5,13 @@ open FSharpPlus
5
6
7
/// A sequence with an Applicative functor based on zipping.
8
-[<NoEquality;NoComparison>]
+[<NoEquality; NoComparison>]
9
type ZipList<'s> = ZipList of 's seq with
10
member this.Item n = let (ZipList s) = this in Seq.item n s
11
12
+ interface IEnumerable<'s> with member x.GetEnumerator () = (let (ZipList x) = x in x).GetEnumerator ()
13
+ interface System.Collections.IEnumerable with member x.GetEnumerator () = (let (ZipList x) = x in x).GetEnumerator () :> System.Collections.IEnumerator
14
+
15
/// Basic operations on ZipList
16
[<RequireQualifiedAccess>]
17
module ZipList =
0 commit comments