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  
generate(initialState:Object, predicate:Function, iterate:Function, resultMap:Function) — Static Method , class raix.interactive.Enumerable
Creates an enumerable sequence by calling back to functions that mainpulate its state
generate(initialState:Object, predicate:Function, iterate:Function, resultMap:Function, scheduler:raix.reactive.scheduling:IScheduler) — Static Method , class raix.reactive.Observable
Creates a custom observable sequence that is controlled by methods supplied as arguments
getEnumerator() — method, class raix.interactive.AbsEnumerable
getEnumerator() — method, interface raix.interactive.IEnumerable
Returns an object that can be used to enumerate through this sequence.
getValues(key:Object) — method, interface raix.interactive.ILookup
Returns a sequence of values for the specified key or an empty sequence if the key has no values
greenThread — Static Property, class raix.reactive.scheduling.Scheduler
Gets the GreenThreadScheduler singleton instance
GreenThreadScheduler — class, package raix.reactive.scheduling
A scheduler that distributes work on a timer, limiting the total execution time per 'switch' to maintain a framerate Adding more work results in the work taking longer to complete, but the framerate remaining constant To benefit from GreenThreadScheduler, scheduled actions should execute in this smallest possible time (ie.
GreenThreadScheduler(contextSwitchObservable:raix.reactive:IObservable) — Constructor, class raix.reactive.scheduling.GreenThreadScheduler
groupBy(keySelector:Function, elementSelector:Function, keyHashSelector:Function) — method, class raix.interactive.AbsEnumerable
Groups elements of a sequence using a key selector function
groupBy(keySelector:Function, elementSelector:Function, keyHashSelector:Function) — method, interface raix.interactive.IEnumerable
Groups elements of a sequence using a key selector function
groupBy(keySelector:Function, elementSelector:Function, keyComparer:Function) — method, class raix.reactive.AbsObservable
Groups values by a key
groupBy(keySelector:Function, elementSelector:Function, keyComparer:Function) — method, interface raix.reactive.IObservable
Groups values by a key
groupByUntil(keySelector:Function, durationSelector:Function, elementSelector:Function, keyComparer:Function) — method, class raix.reactive.AbsObservable
Groups values by a key and also provides a lifetime for a grouping
groupByUntil(keySelector:Function, durationSelector:Function, elementSelector:Function, keyComparer:Function) — method, interface raix.reactive.IObservable
Groups values by a key and also provides a lifetime for a grouping
groupJoin(inner:raix.interactive:IEnumerable, outerKeySelector:Function, innerKeySelector:Function, resultSelector:Function, keyHashSelector:Function) — method, class raix.interactive.AbsEnumerable
Correlates the elements of two sequences based on keys and groups the results Uses immediate execution on the inner sequence, uses deferred executino on the outer (source) sequence
groupJoin(inner:raix.interactive:IEnumerable, outerKeySelector:Function, innerKeySelector:Function, resultSelector:Function, keyHashSelector:Function) — method, interface raix.interactive.IEnumerable
Correlates the elements of two sequences based on keys and groups the results Uses immediate execution on the inner sequence, uses deferred executino on the outer (source) sequence
groupJoin(right:raix.reactive:IObservable, leftWindowSelector:Function, rightWindowSelector:Function, joinSelector:Function) — method, class raix.reactive.AbsObservable
Combines values from two streams based on the "lifetime" of each value, represented by an IObservable selected for each value.
groupJoin(right:raix.reactive:IObservable, leftWindowSelector:Function, rightWindowSelector:Function, joinSelector:Function) — method, interface raix.reactive.IObservable
Combines values from two streams based on the "lifetime" of each value, represented by an IObservable selected for each value.
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