Show / Hide Table of Contents

Interface IDataStructure<T>

Polymorphism base for all data structures in Towel.

Inherited Members
ISteppable<T>.StepperBreak<TStep>(TStep)
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 Source

ToArray()

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.

Extension Methods

Steppable.Stepper<T>(ISteppable<T>, Action<T>)
Steppable.Stepper<T, TStep>(ISteppable<T>, TStep)
Steppable.StepperBreak<T>(ISteppable<T>, Func<T, StepStatus>)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX