Pair<A, B> constructor
Pair<A, B> (
- A _a,
- B _b
Creates a Pair of two values. Both can have different types
Implementation
Pair(this._a, this._b);
Creates a Pair of two values. Both can have different types
Pair(this._a, this._b);