Home | History | Annotate | Download | only in test

Lines Matching refs:apply

59 	    (setq result (apply function arguments))
94 (setq result (apply function arguments))
144 ;; apply - function
145 (equal-test '((+ 2 3) . 4) #'apply 'cons '((+ 2 3) 4))
146 (eql-test -1 #'apply #'- '(1 2))
147 (eql-test 7 #'apply #'max 3 5 '(2 7 3))
148 (error-test #'apply #'+ 1)
149 (error-test #'apply #'+ 1 2)
150 (error-test #'apply #'+ 1 . 2)
151 (error-test #'apply #'+ 1 2 3)
152 (error-test #'apply #'+ 1 2 . 3)
153 (eql-test 6 #'apply #'+ 1 2 3 ())