Pair<T> constructor

const Pair<T>(
  1. T left,
  2. T right
)

Implementation

const Pair(T left, T right)
    : _l = left,
      _r = right;