right<R>(x): Right<R>
R
x
Right
Creates a Right from the given input.
right("foobar")// => {right: "foobar"}
• R
The Right type.
Right<R>