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.
catch
1 parent 606b30e commit a8b67ebCopy full SHA for a8b67eb
src/FSharp.Control.R3/Observable.fs
@@ -12,6 +12,10 @@ let inline bind ([<InlineIfLambda>] f : 'T -> Observable<'TNext>) source = Obser
12
/// Converts the elements of the sequence to the specified type
13
let inline cast<'T, 'CastType> (source) = ObservableExtensions.Cast<'T, 'CastType> (source)
14
15
+/// <summary>
16
+/// Adds an error handler to an observable sequence.
17
+/// </summary>
18
+/// <remarks>Exception does not stop further processing</remarks>
19
let inline catch ([<InlineIfLambda>] f : 'Exn -> Observable<'T>) o = ObservableExtensions.Catch (o, f)
20
21
/// Concatenates the second observable sequence to the first observable sequence
0 commit comments