Combinatorsrightright Callableright<R>(x: R): Right<R>Creates a Right from the given input. Exampleright("foobar")// => {right: "foobar"}Type parametersRThe Right type.Parametersx: RReturns Right<R>
Creates a Right from the given input.
Example