BTreeBaseKey, ValueAdd Method (Key) |
Adds an element to the set and returns a value that indicates if it was successfully added
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool Add(
Key key
)
Public Function Add (
key As Key
) As Boolean
public:
virtual bool Add(
Key key
) sealed
abstract Add :
key : 'Key -> bool
override Add :
key : 'Key -> bool
Parameters
- key
- Type: Key
The object being added
Return Value
Type:
Booleantrue if an element was added; otherwise,
false.
See Also