-
twice (f) (lambda (x) (
funcall f (
funcall f x)))) (defun plus-three (i) (+ i 3)) (defvar g (twice #'plus-three)) (print (
funcall g 7))
import std.stdio...
- (x) (
funcall f (
funcall g x)))) (defun
check () (let* ((sin-asin (compose #'sin/1 #'asin/1)) (expected (sin (asin 0.5))) (compose-result (
funcall sin-asin...
- (a auto) other-object) (with-slots (elements) a (dolist (e elements) (
funcall function e other-object)))) ;; do-something
visitations ;;
catch all (defmethod...
-
shorthand notation. To
apply such a
function object, one must use the
funcall function: (
funcall #'foo bar baz).
Python Explicit partial application with functools...
- value))) ;;; use the
counter (defvar *c* (make-counter 10)) (
funcall *c*) ; --> 11 (
funcall *c*) ; --> 12
Scheme makes closures even simpler, and Scheme...
- Conversely, to call a
function p****ed in such a way, one
would use the
funcall operator on the argument. Scheme's
evaluation model is simpler:
there is...
- real x2 x3 x4)) (* (/ (* 2 h) 45) (+ (* 7 (
funcall f x1)) (* 32 (
funcall f x2)) (* 12 (
funcall f x3)) (* 32 (
funcall f x4)) (* 7 (
funcall f x5)))))))...
- (symbol-function (read-from-string "print-****o")) nil (list foo-class)))) (
funcall (sb-mop:method-generic-function print-****o-method) (make-instance foo-class)))...
- do (multiple-value-bind (x[n+1] even-parity-bit least-significant-bit) (
funcall bbs) (declare (type (integer 0 *) x[n+1])) (declare (type bit even-parity-bit))...
-
declaration as such: (declaim (inline dispatch)) (defun
dispatch (x) (
funcall (get (car x) 'dispatch) x)) The
Haskell compiler GHC
tries to
inline functions...