left<L, R> function

(L?, R?) left<L, R>(
  1. L? left
)

Creates a pair with the first value set to the provided left value and the second value set to null.

Implementation

(L?, R?) left<L, R>(L? left) {
  return (left, null);
}