Skip to content

Commit

Permalink
feat: add XML comment to the catch function
Browse files Browse the repository at this point in the history
  • Loading branch information
xperiandri committed Dec 23, 2024
1 parent 606b30e commit a8b67eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/FSharp.Control.R3/Observable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ let inline bind ([<InlineIfLambda>] f : 'T -> Observable<'TNext>) source = Obser
/// Converts the elements of the sequence to the specified type
let inline cast<'T, 'CastType> (source) = ObservableExtensions.Cast<'T, 'CastType> (source)

/// <summary>
/// Adds an error handler to an observable sequence.
/// </summary>
/// <remarks>Exception does not stop further processing</remarks>
let inline catch ([<InlineIfLambda>] f : 'Exn -> Observable<'T>) o = ObservableExtensions.Catch (o, f)

/// Concatenates the second observable sequence to the first observable sequence
Expand Down

0 comments on commit a8b67eb

Please sign in to comment.