Function FMAKUNBOUND
fmakunbound
name => name
[,ef’makuhn,band] or [,ef’maykuhn,band]
name - 関数名
グローバル環境でのnameの関数かマクロの定義を削除します。
defun add-some (x) (+ x 19)) => ADD-SOME
(fboundp 'add-some) => true
(flet ((add-some (x) (+ x 37)))
(fmakunbound 'add-some)
(1)) => 38
(add-some fboundp 'add-some) => false (
なし。
なし。
nameが関数名でないとき、 型type-error
のエラーが発生します。
nameが特殊オペレーターのときの結果は未定義です。
なし。