Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions android/guava/src/com/google/common/collect/Iterables.java
Original file line number Diff line number Diff line change
Expand Up @@ -1061,8 +1061,9 @@ public static boolean isEmpty(Iterable<?> iterable) {
* <p>Callers must ensure that the source {@code iterables} are in non-descending order as this
* method does not sort its input.
*
* <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
* returned first.
* <p>For any equivalent elements across all {@code iterables}, elements are returned in the order
* of their source iterables. That is, if element A from iterable 1 and element B from iterable 2
* compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
*
* @since 11.0
*/
Expand Down
5 changes: 3 additions & 2 deletions guava/src/com/google/common/collect/Iterables.java
Original file line number Diff line number Diff line change
Expand Up @@ -1067,8 +1067,9 @@ public static boolean isEmpty(Iterable<?> iterable) {
* <p>Callers must ensure that the source {@code iterables} are in non-descending order as this
* method does not sort its input.
*
* <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
* returned first.
* <p>For any equivalent elements across all {@code iterables}, elements are returned in the order
* of their source iterables. That is, if element A from iterable 1 and element B from iterable 2
* compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
*
* @since 11.0
*/
Expand Down
Loading