Optional.opCall

If there's a value that's callable it will be called else it's a noop

struct Optional(T)
ref
opCall
(
Args...
)
(
Args args
)
if (
from!"std.traits".isCallable!T
)

Return Value

Type: auto ref

Optional value of whatever T(args) returns

Meta