MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / from

Method from

JSAT/src/jsat/utils/IntSortedSet.java:56–59  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

viewMethod · 0.95

Tested by

no test coverage detected