MCPcopy Create free account
hub / github.com/BaseXdb/basex / get

Method get

basex-core/src/main/java/org/basex/query/value/seq/FltSeq.java:97–100  ·  view source on GitHub ↗

Creates a sequence with the specified values. @param values values @return value

(final float[] values)

Source from the content-addressed store, hash-verified

95 * @return value
96 */
97 public static Value get(final float[] values) {
98 final int vl = values.length;
99 return vl == 0 ? Empty.VALUE : vl == 1 ? Flt.get(values[0]) : new FltSeq(values);
100 }
101}

Callers 4

toValueMethod · 0.95
readMethod · 0.95
reverseMethod · 0.95
sortMethod · 0.95

Calls 1

getMethod · 0.95

Tested by

no test coverage detected