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 594327a commit a2b5e77Copy full SHA for a2b5e77
src/FSharpPlus/Operators.fs
@@ -206,9 +206,7 @@ module Operators =
206
/// <category index="2">Applicative</category>
207
let inline (<* ) (x: '``Applicative<'U>``) (y: '``Applicative<'T>``) : '``Applicative<'U>`` = ((fun (k: 'U) (_: 'T) -> k ) <!> x : '``Applicative<'T->'U>``) <*> y
208
209
- /// <summary>
210
- /// Apply a lifted argument to a lifted function (flipped): arg <**> f
211
- /// </summary>
+ [<System.Obsolete("Use flip (<*>) instead.")>]
212
213
let inline (<**>) (x: '``Applicative<'T>``) : '``Applicative<'T -> 'U>``->'``Applicative<'U>`` = flip (<*>) x
214
0 commit comments