Skip to content

Commit

Permalink
Remove xml docs from deprecated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty committed Oct 15, 2023
1 parent b2f3c8c commit 020eb23
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/FSharpPlus/Operators.fs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ module Operators =
let inline lift2 (f: 'T->'U->'V) (x: '``Applicative<'T>``) (y: '``Applicative<'U>``) : '``Applicative<'V>`` = Lift2.Invoke f x y

[<System.Obsolete("Use lift2 instead.")>]
/// <category index="2">Applicative</category>
let inline liftA2 (f: 'T->'U->'V) (x: '``Applicative<'T>``) (y: '``Applicative<'U>``) : '``Applicative<'V>`` = lift2 f x y

/// <summary>
Expand All @@ -207,11 +206,9 @@ module Operators =
let inline (<* ) (x: '``Applicative<'U>``) (y: '``Applicative<'T>``) : '``Applicative<'U>`` = ((fun (k: 'U) (_: 'T) -> k ) <!> x : '``Applicative<'T->'U>``) <*> y

[<System.Obsolete("Use flip (<*>) instead.")>]
/// <category index="2">Applicative</category>
let inline (<**>) (x: '``Applicative<'T>``) : '``Applicative<'T -> 'U>``->'``Applicative<'U>`` = flip (<*>) x

[<System.Obsolete("Use opt instead.")>]
/// <category index="2">Applicative</category>
let inline optional v = Some <!> v </Append.Invoke/> result None

/// <summary>
Expand Down

0 comments on commit 020eb23

Please sign in to comment.