Creates a sequence with the specified values. @param values values @return value
(final float[] values)
| 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 | } |