Next: Editing Types, Previous: Comments, Up: Lisp Data Types [Contents][Index]
Emacs Lisp¤Ë¤Ï¡¢Â礤¯2¼ïÎà¤Î·¿¤¬¤¢¤ê¤Þ¤¹¡£ Lisp¤Î¥×¥í¥°¥é¥ß¥ó¥°¤Ë´Ø¤ï¤ë¤â¤Î¤È¡¢ÊÔ½¸¤Ë´Ø¤ï¤ë¤â¤Î¤Ç¤¹¡£ Á°¼Ô¤Ï¡¢¤µ¤Þ¤¶¤Þ¤Ê·Á¤ÇLisp¤Î¿¤¯¤Î¼ÂÁõ¤Ë¸«¤é¤ì¤Þ¤¹¡£ ¸å¼Ô¤Ï¡¢Emacs Lisp¤Ë¸ÇͤǤ¹¡£
• Integer Type: | Numbers without fractional parts. | |
• Floating Point Type: | Numbers with fractional parts and with a large range. | |
• Character Type: | The representation of letters, numbers and control characters. | |
• Symbol Type: | A multi-use object that refers to a function, variable, or property list, and has a unique identity. | |
• Sequence Type: | Both lists and arrays are classified as sequences. | |
• Cons Cell Type: | Cons cells, and lists (which are made from cons cells). | |
• Array Type: | Arrays include strings and vectors. | |
• String Type: | An (efficient) array of characters. | |
• Vector Type: | One-dimensional arrays. | |
• Char-Table Type: | One-dimensional sparse arrays indexed by characters. | |
• Bool-Vector Type: | One-dimensional arrays of t or nil .
| |
• Function Type: | A piece of executable code you can call from elsewhere. | |
• Macro Type: | A method of expanding an expression into another expression, more fundamental but less pretty. | |
• Primitive Function Type: | A function written in C, callable from Lisp. | |
• Byte-Code Type: | A function written in Lisp, then compiled. | |
• Autoload Type: | A type used for automatically loading seldom-used functions. |
Next: Editing Types, Previous: Comments, Up: Lisp Data Types [Contents][Index]