Creates an Optional containing the given value.
Example:
var opt = Optional.of<string> ("hello");
assert (opt.get () == "hello");
| value |
the value to wrap. |
|
an Optional containing the value. |