You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
1404
+
*
1405
+
* @param items
1406
+
* @param predicate a function to test each element for a condition; the second parameter of the function represents the index of the source element; otherwise, false.
* Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
2378
+
*
2379
+
* @param predicate a function to test each element for a condition; the second parameter of the function represents the index of the source element; otherwise, false.
* Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
2388
+
*
2389
+
* @param predicate a function to test each element for a condition; the second parameter of the function represents the index of the source element; otherwise, false.
// wrap in a Watchbable so that if a chain is built up, then asynchronously subscribed to twice we will have 2 instances of Take<T> rather than 1 handing both, which is not thread-safe.
* Returns values from an observable sequence as long as a specified condition is true, and then skips the remaining values.
62
+
*
63
+
* @param items
64
+
* @param predicate a function to test each element for a condition; the second parameter of the function represents the index of the source element; otherwise, false.
// wrap in a Func so that if a chain is built up, then asynchronously subscribed to twice we will have 2 instances of Take<T> rather than 1 handing both, which is not thread-safe.
Copy file name to clipboardExpand all lines: rxjava-core/src/main/java/rx/util/functions/Functions.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
* <p>
27
27
* Language support is provided via implementations of {@link FunctionLanguageAdaptor}.
28
28
* <p>
29
-
* This class will dynamically look for known language adaptors on the classpath at startup or new ones can be registered using {@link #registerLanguageAdaptor(Class, FunctionLanguageAdaptor)}.
29
+
* This class will dynamically look for known language adaptors on the classpath at startup or new ones can be registered using {@link #registerLanguageAdaptor(Class[], FunctionLanguageAdaptor)}.
30
30
*/
31
31
publicclassFunctions {
32
32
@@ -81,7 +81,6 @@ public static Collection<FunctionLanguageAdaptor> getRegisteredLanguageAdaptors(
81
81
* Utility method for determining the type of closure/function and executing it.
0 commit comments