set method

void set(
  1. T a,
  2. T b
)

Sets the prospect to contain a and b instead of what it previously contained.

Implementation

void set(T a, T b) {
  _a = a;
  _b = b;
  _hash = _pairHash(a.hashCode, b.hashCode);
}