Uses of Class
fj.data.List.Buffer
-
Packages that use List.Buffer Package Description fj.data Common algebraic data types. -
-
Uses of List.Buffer in fj.data
Methods in fj.data that return List.Buffer Modifier and Type Method Description List.Buffer<A>
List.Buffer. append(List<A> as)
Appends the given list to this buffer.static <A> List.Buffer<A>
List.Buffer. empty()
An empty buffer.static <A> List.Buffer<A>
List.Buffer. fromList(List<A> as)
Constructs a buffer from the given list.static <A> List.Buffer<A>
List.Buffer. iterableBuffer(java.lang.Iterable<A> i)
Takes the given iterable to a buffer.List.Buffer<A>
List.Buffer. snoc(A a)
Appends (snoc) the given element to this buffer to produce a new buffer.Methods in fj.data that return types with arguments of type List.Buffer Modifier and Type Method Description static <A> java.util.stream.Collector<A,List.Buffer<A>,Array<A>>
Collectors. toArray()
static <A> java.util.stream.Collector<A,List.Buffer<A>,List<A>>
Collectors. toList()
static <A> java.util.stream.Collector<A,List.Buffer<A>,Stream<A>>
Collectors. toStream()
-