Skip to content

Commit a2b5e77

Browse files
committed
Deprecate <**>
1 parent 594327a commit a2b5e77

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/FSharpPlus/Operators.fs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,7 @@ module Operators =
206206
/// <category index="2">Applicative</category>
207207
let inline (<* ) (x: '``Applicative<'U>``) (y: '``Applicative<'T>``) : '``Applicative<'U>`` = ((fun (k: 'U) (_: 'T) -> k ) <!> x : '``Applicative<'T->'U>``) <*> y
208208

209-
/// <summary>
210-
/// Apply a lifted argument to a lifted function (flipped): arg &lt;**&gt; f
211-
/// </summary>
209+
[<System.Obsolete("Use flip (<*>) instead.")>]
212210
/// <category index="2">Applicative</category>
213211
let inline (<**>) (x: '``Applicative<'T>``) : '``Applicative<'T -> 'U>``->'``Applicative<'U>`` = flip (<*>) x
214212

0 commit comments

Comments
 (0)