Tries to add specified value to the AATree.
If the value is already present in the tree then this method returns without adding.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Add(
T value
)
Public Function Add (
value As T
) As Boolean
public:
bool Add(
T value
)
member Add :
value : 'T -> bool
Parameters
- value
- Type: T
Value to add.
Return Value
Type:
BooleanReturns true if value is added successfully, else returns false.
See Also