Skip to content

Commit a8b67eb

Browse files
committed
feat: add XML comment to the catch function
1 parent 606b30e commit a8b67eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/FSharp.Control.R3/Observable.fs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ let inline bind ([<InlineIfLambda>] f : 'T -> Observable<'TNext>) source = Obser
1212
/// Converts the elements of the sequence to the specified type
1313
let inline cast<'T, 'CastType> (source) = ObservableExtensions.Cast<'T, 'CastType> (source)
1414

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

1721
/// Concatenates the second observable sequence to the first observable sequence

0 commit comments

Comments
 (0)