% Function COMPILED-FUNCTION-P
Function COMPILED-FUNCTION-P
compiled-function-p
object => generalized-boolean
object - オブジェクト
generalized-boolean - generalized-boolean
objectが型compiled-function
ならtrueを、
それ以外はfalseを返却します。
(defun f (x) x) => F
(compiled-function-p #'f)
=> false
OR=> true
(compiled-function-p 'f) => false
(compile 'f) => F
(compiled-function-p #'f) => true
(compiled-function-p 'f) => false
(compiled-function-p (compile nil '(lambda (x) x)))
=> true
(compiled-function-p #'(lambda (x) x))
=> false
OR=> true
(compiled-function-p '(lambda (x) x)) => false
なし。
なし。
なし。
compile
,
compile-file
,
compiled-function
(compiled-function-p object) == (typep object 'compiled-function)