@@ -12,7 +12,7 @@ let inline bind ([<InlineIfLambda>] f : 'T -> Observable<'TNext>) source = Obser
12
12
/// Converts the elements of the sequence to the specified type
13
13
let inline cast < 'T , 'CastType > ( source ) = ObservableExtensions.Cast< 'T, 'CastType> ( source)
14
14
15
- let inline catch ( [<InlineIfLambda>] f : 'Exn -> Observable < 'TNext >) o = ObservableExtensions.Catch ( o, f)
15
+ let inline catch ( [<InlineIfLambda>] f : 'Exn -> Observable < 'T >) o = ObservableExtensions.Catch ( o, f)
16
16
17
17
/// Concatenates the second observable sequence to the first observable sequence
18
18
/// upn the successful termination of the first
@@ -45,13 +45,13 @@ let inline distinct source = ObservableExtensions.Distinct source
45
45
let inline empty () = Observable.Empty ()
46
46
47
47
/// Filters the observable elements of a sequence based on a predicate
48
- let inline filter ( [<InlineIfLambda>] f : 't -> bool ) source = ObservableExtensions.Where ( source, f)
48
+ let inline filter ( [<InlineIfLambda>] f : 'T -> bool ) source = ObservableExtensions.Where ( source, f)
49
49
50
50
/// Maps the given observable with the given function
51
- let inline map ( [<InlineIfLambda>] f : 't -> 'r ) source = ObservableExtensions.Select ( source, f)
51
+ let inline map ( [<InlineIfLambda>] f : 'T -> 'R ) source = ObservableExtensions.Select ( source, f)
52
52
53
53
/// Maps the given observable with the given function and the index of the element
54
- let inline mapi ( [<InlineIfLambda>] f : int -> 't -> 'r ) source = ObservableExtensions.Select ( source, ( fun i x -> f x i))
54
+ let inline mapi ( [<InlineIfLambda>] f : int -> 'T -> 'R ) source = ObservableExtensions.Select ( source, ( fun i x -> f x i))
55
55
56
56
/// Merges two observable sequences into one observable sequence
57
57
let inline merge ( source1 , source2 ) = ObservableExtensions.Merge ( source1, source2)
@@ -68,7 +68,7 @@ let inline skip (count : int) (source) = ObservableExtensions.Skip (source, coun
68
68
let inline take ( count : int ) ( source ) = ObservableExtensions.Take ( source, count)
69
69
70
70
/// Filters the observable elements of a sequence based on a predicate
71
- let inline where ( [<InlineIfLambda>] f : 't -> bool ) source = ObservableExtensions.Where ( source, f)
71
+ let inline where ( [<InlineIfLambda>] f : 'T -> bool ) source = ObservableExtensions.Where ( source, f)
72
72
73
73
open System.Runtime .CompilerServices
74
74
open System.Runtime .InteropServices
0 commit comments