right<L, R> function

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

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

Implementation

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