Go to the first, previous, next, last section, table of contents.

primitive関数タイプ

primitive 関数は、Lisp から呼ばれうる関数で、C で書かれたものです。 primitive はまた subrs(サブルーチン), built-in 関数, compiled 関数とも呼ばれます。それら は、関数のシンボル名を持つハッシュノーテーションを print します。

      (symbol-function 'car)           ;シンボルの関数をアクセスする
           => #<subr car>              ;compiled 関数
      (subrp (symbol-function 'car))   ;subr か?
           => t

Go to the first, previous, next, last section, table of contents.