We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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