Pair<A, B> typedef

Pair<A, B> = (A, B)

Represents a generic pair of two values.

Implementation

typedef Pair<A, B> = (A, B);