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 784ff41 commit eeeed53Copy full SHA for eeeed53
src/FSharpPlus/Data/ZipList.fs
@@ -9,7 +9,7 @@ open FSharpPlus
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 ()
+ interface System.Collections.Generic.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
0 commit comments