Creates a new Ok instance representing a successful value.
The type of the value
The successful value to wrap
A Result containing the successful value
const result = ok(42);// result = Ok(42) Copy
const result = ok(42);// result = Ok(42)
Creates a new Ok instance representing a successful value.