Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Mar 25, 2024
1 parent e0de4d3 commit c69b999
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ public static <E> ImmutableList<E> filterImmutableList(List<? extends E> list, P
return newList.build();
}

/** concatToSet */
public static <E> Set<E> concatToSet(Collection<? extends E> left, Collection<? extends E> right) {
ImmutableSet.Builder<E> required = ImmutableSet.builderWithExpectedSize(
left.size() + right.size()
Expand Down

0 comments on commit c69b999

Please sign in to comment.