| Modifier and Type | Class and Description |
|---|---|
class |
MiniSet0<T>
An empty implementation of
MiniSet. |
class |
MiniSet1<T>
An implementation of
MiniSet containing a single value. |
class |
MiniSet2<T>
An implementation of
MiniSet containing two values. |
class |
MiniSet3<T>
An implementation of
MiniSet containing three values. |
class |
MiniSet4<T>
An implementation of
MiniSet containing four values. |
class |
MiniSet5<T>
An implementation of
MiniSet containing four values. |
| Modifier and Type | Method and Description |
|---|---|
static <TT> MiniSet<TT> |
MiniSet.of()
Get an empty
MiniSet. |
static <TT> MiniSet<TT> |
MiniSet.of(TT value)
Get a
MiniSet containing a single value. |
static <TT> MiniSet<TT> |
MiniSet.of(TT value0,
TT value1)
Get a
MiniSet containing two values. |
static <TT> MiniSet<TT> |
MiniSet.of(TT value0,
TT value1,
TT value2)
Get a
MiniSet containing three values. |
static <TT> MiniSet<TT> |
MiniSet.of(TT value0,
TT value1,
TT value2,
TT value3)
Get a
MiniSet containing four values. |
static <TT> MiniSet<TT> |
MiniSet.of(TT value0,
TT value1,
TT value2,
TT value3,
TT value4)
Get a
MiniSet containing five values. |
Copyright © 2023. All rights reserved.