Class ListBuffer<A>

java.lang.Object
java.util.AbstractCollection<A>
java.util.AbstractQueue<A>
com.strobel.collections.ListBuffer<A>
All Implemented Interfaces:
Iterable<A>, Collection<A>, Queue<A>

public class ListBuffer<A> extends AbstractQueue<A>
A class for constructing lists by appending elements. Modelled after java.lang.StringBuffer.

This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.