apply -- r7rs Definition
§

Kind
§

procedure;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(apply proc arg_1 ... args)

The apply procedure calls proc with the elements of the list (append (list arg_1 ...) args) as the actual arguments.

(apply + (list 3 4))              ===>  7

(define compose
  (lambda (f g)
    (lambda args
      (f (apply g args)))))

((compose sqrt *) 12 75)              ===>  30

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§