partially-apply
function
(partially-apply func &rest head-args)
Creates a new function by partially applying arguments to the given function.
make-html > (def f (partially-apply string "de "))
it: f
make-html > (map f '(aap noot hond))
it: ("de aap" "de noot" "de hond")