/// <summary> /// If the provided value is an observable, return its value, otherwise just pass it through. /// </summary> /// <param name="value">The value to unwrap.</param> public static T UnwrapObservable <T>(Observable <T> value) { return(default(T)); }
/// <summary> /// Returns an Array of numbers starting from the specified minimum to the maximum /// </summary> public static int[] Range(Observable <int> min, Observable <int> max) { return(null); }