A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
AbsEnumerable — class, package raix.interactive
An abstract implementation of IEnumerable.
AbsEnumerable() — Constructor, class raix.interactive.AbsEnumerable
AbsObservable — class, package raix.reactive
Subclass this class only if you want to implement a completely custom IObservable.
AbsObservable() — Constructor, class raix.reactive.AbsObservable
accept(onNext:Function, onCompleted:Function, onError:Function) — method, class raix.reactive.Notification
Calls the appropriate method
accept(onNext:Function, onCompleted:Function, onError:Function) — method, class raix.reactive.OnCompleted
Calls onCompleted if it's not null
accept(onNext:Function, onCompleted:Function, onError:Function) — method, class raix.reactive.OnError
Calls onError if it's not null
accept(onNext:Function, onCompleted:Function, onError:Function) — method, class raix.reactive.OnNext
Calls onNext if it's not null
acceptWith(observer:raix.reactive:IObserver) — method, class raix.reactive.Notification
Calls the appropriate method on an observer
actionCount — Property, class raix.reactive.testing.TestScheduler
add(cancelable:raix.reactive:ICancelable) — method, class raix.reactive.CompositeCancelable
Adds a cancelable resource to the list of cancelable resources.
aggregate(seed:Object, accumulator:Function, resultSelector:Function) — method, class raix.interactive.AbsEnumerable
aggregate(accumulator:Function, initialValue:Object, useInitialValue:Boolean) — method, class raix.reactive.AbsObservable
aggregate(accumulator:Function, initialValue:Object, useInitialValue:Boolean) — method, interface raix.reactive.IObservable
all(predicate:Function) — method, class raix.interactive.AbsEnumerable
Determines if the every value in the source sequence matches a predicate function.
all(predicate:Function) — method, interface raix.interactive.IEnumerable
Determines if the every value in the source sequence matches a predicate function.
all(predicate:Function) — method, class raix.reactive.AbsObservable
Determines if all values in the source sequence satisfy a condition
all(predicate:Function) — method, interface raix.reactive.IObservable
Determines if all values in the source sequence satisfy a condition
amb(sources:Array) — Static Method , class raix.reactive.Observable
Takes multiple source sequences and returns values from the first sequence to emit a value
and(right:raix.reactive:IObservable) — method, class raix.reactive.AbsObservable
Creates a pattern by combining the current source with right.
and(right:raix.reactive:IObservable) — method, interface raix.reactive.IObservable
Creates a pattern by combining the current source with right.
and(source:raix.reactive:IObservable) — method, class raix.reactive.Pattern
Creates another pattern that combines the IObservable sequences of this Pattern with another IObservable sequence
any(predicate:Function) — method, class raix.interactive.AbsEnumerable
Determines if the predicate argument function returns true for any item in the sequence.
any(predicate:Function) — method, interface raix.interactive.IEnumerable
Determines if the predicate argument function returns true for any item in the sequence.
any(predicate:Function) — method, class raix.reactive.AbsObservable
Determines if the source sequence contains a value that satisfies a condition
any(predicate:Function) — method, interface raix.reactive.IObservable
Determines if the source sequence contains a value that satisfies a condition
asObservable() — method, class raix.reactive.AbsObservable
Hides the source sequence so it cannot be cast back to it’s concrete implementation
asObservable() — method, interface raix.reactive.IObservable
Hides the source sequence so it cannot be cast back to it’s concrete implementation
assertNotifications(expectedNotifications:Array, failFunction:Function, valueComparer:Function, message:String) — method, class raix.reactive.testing.MockObserver
assertTimings(recordedNotifications:Array, failFunction:Function, valueComparer:Function, message:String) — method, class raix.reactive.testing.MockObserver
assertValues(expectedValues:Array, failFunction:Function, comparer:Function, message:String) — method, class raix.reactive.testing.MockObserver
asynchronous — Static Property, class raix.reactive.scheduling.Scheduler
Gets the default asynchronous scheduler
AsyncSubject — class, package raix.reactive.subjects
A subject that replays the last value (or error) received to observers that subscribe after the sequence has completed
AsyncSubject(scheduler:raix.reactive.scheduling:IScheduler) — Constructor, class raix.reactive.subjects.AsyncSubject
average(valueSelector:Function) — method, class raix.interactive.AbsEnumerable
Retrieves the average value in the sequence.
average(valueSelector:Function) — method, interface raix.interactive.IEnumerable
Retrieves the average value in the sequence.
average(valueSelector:Function) — method, class raix.reactive.AbsObservable
Returns the average value of all the elements in the source sequence
average(valueSelector:Function) — method, interface raix.reactive.IObservable
Returns the average value of all the elements in the source sequence
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z