An Introduction to Programming in Emacs Lisp Chapter 09

こんにちは。
「あんたといるのはつらい。将来ないし。」と彼女に言われている whitypig です。

Chapter 09

  • List
    • cons cell
      • an address to the next cell or nil
      • an address to the atom
    • 2つのポインタを持っているイメージ
      • 1つは,次のセル
      • もう一つは,例えば atom

Exercise

(setq flowers '(violet buttercup))
flowers
; => (violet buttercup)

(setq more-flowers (cons 'sunflower (cons 'dandelion flowers)))
more-flowers
; => (sunflower dandelion violet buttercup)

(setcar flowers 'rainbowtrout)

flowers
; => (rainbowtrout buttercup)

more-flowers
; => (sunflower dandelion rainbowfish buttercup)

なるほど,ポインタをつけ替えている感じか。