We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This operator accesses the optional arguments sent to a function.
(fun foo () (list opt.x opt.y opt.z)) (foo x: 1 y: 2 z: 3) -> (1 2 3) (foo x: 1 y: 2) -> (1 2 null) (foo) -> (null null null)