1  package frost.collections
2  
3  ====================================================================================================
4  A read/write collection of elements.
5  ====================================================================================================
6  interface Collection<T> : CollectionView<T>, CollectionWriter<T> {
7  }
8