PeanutButter
|
Defines the Circular List, which should behave a lot like an IList<T> except that enumerating it (when there are any values) will be an infinite task, running through all the values over and over. More...
Properties | |
int | ItemCount [get] |
The actual count of items in the internal store. | |
IEnumerable< T > | Items [get] |
Access to just the items in the store, without circular logic. |
Defines the Circular List, which should behave a lot like an IList<T> except that enumerating it (when there are any values) will be an infinite task, running through all the values over and over.
T |
|
get |
The actual count of items in the internal store.
Implemented in PeanutButter.Utils.CircularList< T >.
|
get |
Access to just the items in the store, without circular logic.
Implemented in PeanutButter.Utils.CircularList< T >.