Creates a set of integers from the given list of integers. @param ints a list of integers to create a set from @return a set of integers of all the unique integers in the given list
(int... ints)
| 54 | * @return a set of integers of all the unique integers in the given list |
| 55 | */ |
| 56 | public static IntSortedSet from(int... ints) |
| 57 | { |
| 58 | return new IntSortedSet(IntList.view(ints, ints.length)); |
| 59 | } |
| 60 | |
| 61 | public IntSortedSet() |
| 62 | { |