We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5453582 commit 1c422dcCopy full SHA for 1c422dc
src/FSharpPlus/Data/NonEmptySeq.fs
@@ -55,7 +55,7 @@ type NonEmptySeq<'t> =
55
static member Lift3 (f, x: NonEmptySeq<_> , y: NonEmptySeq<_> , z: NonEmptySeq<_>) = NonEmptySeq<_>.lift3 f x y z
56
static member IsLeftZero (_: NonEmptySeq<_>) = false
57
58
- // no need, it should take the one from Seq --> member this.Head (x: NonEmptySeq<'T> , [<Optional>]_impl: Head ) = x.First
+ member this.Head (x: NonEmptySeq<'T> , [<Optional>]_impl: Head) = x.First
59
60
static member TryHead (x: NonEmptySeq<'T>,[<Optional>]_impl: TryHead) = Some x.First
61
static member TryLast (x: NonEmptySeq<'T>, [<Optional>]_impl: TryLast) = Some <| Seq.last x
0 commit comments