Skip to content

Commit

Permalink
- Overload for KVP
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty committed Nov 22, 2023
1 parent d36cfab commit ff5845e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/FSharpPlus/Control/Applicative.fs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ type Apply =
static member ``<*>`` ((f: voption<_> , x: voption<'T> , _output: voption<'U> ) , [<Optional>]_mthd: Apply) = ValueOption.apply f x : voption<'U>
static member ``<*>`` ((f: Result<_,'E> , x: Result<'T,'E> , _output: Result<'b,'E> ) , [<Optional>]_mthd: Apply) = Result.apply f x : Result<'U,'E>
static member ``<*>`` ((f: Choice<_,'E> , x: Choice<'T,'E> , _output: Choice<'b,'E> ) , [<Optional>]_mthd: Apply) = Choice.apply f x : Choice<'U,'E>
static member inline ``<*>`` ((KeyValue(a: 'Key, f), KeyValue(b: 'Key, x: 'T), _output: KeyValuePair<'Key,'U>), [<Optional>]_mthd: Apply) : KeyValuePair<'Key,'U> = KeyValuePair (Plus.Invoke a b, f x)

static member ``<*>`` ((f: Map<'Key,_> , x: Map<'Key,'T> , _output: Map<'Key,'U> ) , [<Optional>]_mthd: Apply) : Map<'Key,'U> = Map (seq {
for KeyValue(k, vf) in f do
Expand Down

0 comments on commit ff5845e

Please sign in to comment.