Uses of Class
fj.data.List.Buffer
Packages that use List.Buffer
-
Uses of List.Buffer in fj.data
Methods in fj.data that return List.BufferModifier and TypeMethodDescriptionAppends the given list to this buffer.static <A> List.Buffer
<A> List.Buffer.empty()
An empty buffer.static <A> List.Buffer
<A> Constructs a buffer from the given list.static <A> List.Buffer
<A> List.Buffer.iterableBuffer
(Iterable<A> i) Takes the given iterable to a buffer.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.BufferModifier and TypeMethodDescriptionstatic <A> Collector
<A, List.Buffer<A>, Array<A>> Collectors.toArray()
static <A> Collector
<A, List.Buffer<A>, List<A>> Collectors.toList()
static <A> Collector
<A, List.Buffer<A>, Stream<A>> Collectors.toStream()