set<T extends B> method

void set<T extends B>(
  1. T value
)

Associate the type of value with value in the map.

Implementation

void set<T extends B>(T value) {
  _data[T] = value;
}