Creates a generator that yields a single value.
Type of the value to yield
The value to yield
The provided value
const result = G.pipe( G.yield_(42), G.array);// => [42] Copy
const result = G.pipe( G.yield_(42), G.array);// => [42]
Creates a generator that yields a single value.