File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
android/guava/src/com/google/common/collect
guava/src/com/google/common/collect Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1061,8 +1061,9 @@ public static boolean isEmpty(Iterable<?> iterable) {
1061
1061
* <p>Callers must ensure that the source {@code iterables} are in non-descending order as this
1062
1062
* method does not sort its input.
1063
1063
*
1064
- * <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
1065
- * returned first.
1064
+ * <p>For any equivalent elements across all {@code iterables}, elements are returned in the order
1065
+ * of their source iterables. That is, if element A from iterable 1 and element B from iterable 2
1066
+ * compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
1066
1067
*
1067
1068
* @since 11.0
1068
1069
*/
Original file line number Diff line number Diff line change @@ -1067,8 +1067,9 @@ public static boolean isEmpty(Iterable<?> iterable) {
1067
1067
* <p>Callers must ensure that the source {@code iterables} are in non-descending order as this
1068
1068
* method does not sort its input.
1069
1069
*
1070
- * <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
1071
- * returned first.
1070
+ * <p>For any equivalent elements across all {@code iterables}, elements are returned in the order
1071
+ * of their source iterables. That is, if element A from iterable 1 and element B from iterable 2
1072
+ * compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
1072
1073
*
1073
1074
* @since 11.0
1074
1075
*/
You can’t perform that action at this time.
0 commit comments