set method
void
set(
- T a,
- 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;
}
Sets the prospect to contain a
and b
instead of what it previously
contained.
void set(T a, T b) {
_a = a;
_b = b;
_hash = a.hashCode ^ b.hashCode;
}