Skip to content

Commit ea72370

Browse files
committed
Try to remove dummy overload
1 parent 9a32972 commit ea72370

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/FSharpPlus/Control/Applicative.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ type Apply =
1717

1818
static member ``<*>`` (struct (f: Lazy<'T->'U> , x: Lazy<'T> ) , _output: Lazy<'U> , [<Optional>]_mthd: Apply) = Lazy.apply f x : Lazy<'U>
1919
static member ``<*>`` (struct (f: seq<_> , x: seq<'T> ) , _output: seq<'U> , [<Optional>]_mthd: Apply) = Seq.apply f x : seq<'U>
20-
static member ``<*>`` (struct (_: NonEmptySeq2<_> , _: NonEmptySeq2<'T> ) , _output: NonEmptySeq2<'U> , [<Optional>]_mthd: Apply) = failwith "no <*> implementation for NonEmptySeq2<'U>" : NonEmptySeq2<'U>
2120
static member ``<*>`` (struct (f: IEnumerator<_> , x: IEnumerator<'T> ) , _output: IEnumerator<'U> , [<Optional>]_mthd: Apply) = Enumerator.map2 id f x : IEnumerator<'U>
2221
static member ``<*>`` (struct (f: list<_> , x: list<'T> ) , _output: list<'U> , [<Optional>]_mthd: Apply) = List.apply f x : list<'U>
2322
static member ``<*>`` (struct (f: _ [] , x: 'T [] ) , _output: 'U [] , [<Optional>]_mthd: Apply) = Array.apply f x : 'U []

0 commit comments

Comments
 (0)