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

Method from

JSAT/src/jsat/utils/IntSet.java:91–94  ·  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

89 * @return a set of integers of all the unique integers in the given list
90 */
91 public static IntSet from(int... ints)
92 {
93 return new IntSet(IntList.view(ints, ints.length));
94 }
95
96 /**
97 * Gets the index of the given key. Based on that {@link #status} variable,

Callers

nothing calls this directly

Calls 1

viewMethod · 0.95

Tested by

no test coverage detected