We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This operator creates a function of one argument, _. (_ ...) is syntactic sugar for (lambda (_) ...).
(list ((_ (+ _ _)) 1) ((_ (* 5 _)) 2) ((_ (* _ _)) 3)) ; (2 10 9)
For fans of Morse code: _ functions can be nested.
((_ (+ _ ((_ (* _ _)) 3))) 7) ; 16