You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/FSharpPlus/Control/Applicative.fs
+3-5
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,9 @@ type Apply =
37
37
static member ``<*>`` (struct(f:Result<_,'E>,x:Result<'T,'E>),_output:Result<'b,'E>,[<Optional>]_mthd:Apply)= Result.apply f x : Result<'U,'E>
38
38
static member ``<*>`` (struct(f:Choice<_,'E>,x:Choice<'T,'E>),_output:Choice<'b,'E>,[<Optional>]_mthd:Apply)= Choice.apply f x : Choice<'U,'E>
39
39
static member inline ``<*>`` (struct(KeyValue(a:'Key,f),KeyValue(b:'Key,x:'T)),_output:KeyValuePair<'Key,'U>,[<Optional>]_mthd:Default3):KeyValuePair<'Key,'U>= KeyValuePair (Plus.Invoke a b, f x)
40
-
static member inline ``<*>`` (struct(f:KeyValuePair2<'Key,_>,x:KeyValuePair2<'Key,'T>),_output:KeyValuePair2<'Key,'U>,[<Optional>]_mthd:Default3):KeyValuePair2<'Key,'U>=
41
-
leta= f.Key
42
-
letb= x.Key
43
-
letf= f.Value
44
-
letx= x.Value
40
+
static member inline ``<*>`` (struct(f:KeyValuePair2<_,_>,x:KeyValuePair2<_,'T>),_output:KeyValuePair2<_,'U>,[<Optional>]_mthd:Default3):KeyValuePair2<'Key,'U>=
41
+
leta,b = f.Key, x.Key
42
+
letf,x = f.Value, x.Value
45
43
KeyValuePair2 (Plus.Invoke a b, f x)
46
44
47
45
static member ``<*>`` (struct(f:Map<'Key,_>,x:Map<'Key,'T>),_output:Map<'Key,'U>,[<Optional>]_mthd:Apply):Map<'Key,'U>= Map (seq{
0 commit comments