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 = a.hashCode ^ b.hashCode;
}