Interface IDataStructure<T>
Polymorphism base for all data structures in Towel.
Inherited Members
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IDataStructure<T> : ISteppable<T>, System.Collections.Generic.IEnumerable<T>
Type Parameters
Name | Description |
---|---|
T | The type of values stored in this data structure. |
Methods
| Improve this Doc View SourceToArray()
Constructs an array with the values of this data structure.
Declaration
T[] ToArray()
Returns
Type | Description |
---|---|
T[] | An array with the values of this data structure. |