operator [] method
V?
operator [](
- K k
Returns the value associated with k, if present.
Implementation
V? operator [](K k) {
return value[k];
}
Returns the value associated with k, if present.
V? operator [](K k) {
return value[k];
}