| IndexTKey, TValuePut Method |
Associates the value of TValue with key of type TKey.
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public bool Put(
TKey key,
TValue value
)
member Put :
key : 'TKey *
value : 'TValue -> bool
Parameters
- key
- Type: TKey
The key to add. - value
- Type: TValue
The value to add.
Return Value
Type:
Booleantrue if the value didn't exist for the key previously, and
false otherwise.
See Also