Interface DataStructure.IAuditable<T>
Property of a data structure (does it have a contains method).
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IAuditable<T>
Type Parameters
Name | Description |
---|---|
T | The type of value. |
Methods
| Improve this Doc View SourceContains(T)
Checks if the data structure contains a value.
Declaration
bool Contains(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value to look for in the data structure. |
Returns
Type | Description |
---|---|
System.Boolean | True if the value exists in the data structure. False if not. |