Optional.opCall

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

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

Return Value

Type: auto

Optional value of whatever T(args) returns

Meta