Verifies whether the specified value is present in the tree or not.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Contains(
T value
)
Public Function Contains (
value As T
) As Boolean
public:
bool Contains(
T value
)
member Contains :
value : 'T -> bool
Parameters
- value
- Type: T
Value to verify.
Return Value
Type:
BooleanReturns true if the specified value is present in the tree, else returns false.
See Also