left<L, R> function
(L?, R?)
left<L, R>(
- 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);
}