public class Seqs
extends java.lang.Object
| Constructor and Description |
|---|
Seqs() |
| Modifier and Type | Method and Description |
|---|---|
static <T> MutableSeq<T> |
newMutableSeq()
Create an empty MutableSeq
|
static <T> MutableSeq<T> |
newMutableSeq(java.util.Collection<T> values)
Create an MutableSeq with the single values inside the collection
|
static <T> MutableSeq<T> |
newMutableSeq(T... values)
Create an MutableSeq with the values
|
static <T> MutableSeq<T> |
newMutableSeq(T value)
Create an MutableSeq with the single value
|
static <T> Seq<T> |
newSeq()
Create an empty Seq
|
static <T> Seq<T> |
newSeq(java.util.Collection<T> values)
Create an Seq with the single values inside the collection
|
static <T> Seq<T> |
newSeq(T... values)
Create an Seq with the values
|
static <T> Seq<T> |
newSeq(T value)
Create an Seq with the single value
|
public static <T> Seq<T> newSeq()
public static <T> Seq<T> newSeq(T value)
public static <T> Seq<T> newSeq(T... values)
public static <T> Seq<T> newSeq(java.util.Collection<T> values)
public static <T> MutableSeq<T> newMutableSeq()
public static <T> MutableSeq<T> newMutableSeq(T value)
public static <T> MutableSeq<T> newMutableSeq(T... values)
public static <T> MutableSeq<T> newMutableSeq(java.util.Collection<T> values)