Land of Lispの良いところをたくさん読んだので、そこを調べて何が見えるか見てみようと思いました。
(defun tweak-text (lst caps lit)
(when lst
(let ((item (car lst))
(rest (cdr lst)))
(cond
; If item = space, then call recursively starting with ret
; Then, prepend the space on to the result.
((eq item #\space) (cons item (tweak-text rest caps lit)))
; if the item is an exclamation point. Make sure that the
; next non-space is capitalized.
((member item '(#\! #\? #\.)) (cons item (tweak-text rest t lit)))
; if item = " then toggle whether we are in literal mode
((eq item #\") (tweak-text rest caps (not lit)))
; if literal mode, just add the item as is and continue
(lit (cons item (tweak-text rest nil lit)))
; if either caps or literal mode = true capitalize it?
((or caps lit) (cons (char-upcase item) (tweak-text rest nil lit)))
; otherwise lower-case it.
(t (cons (char-downcase item) (tweak-text rest nil nil)))))))
(コメントは私のものです)
(参考までに-メソッドのシグネチャはです(list-of-symbols bool-whether-to-caps bool-whether-to-treat-literally)
が、作成者はこれらを短縮しました(lst caps lit)
。)
しかしとにかく、ここに質問があります:
これは(cond... (lit ...) ((or caps lit) ...))
それにあります。私の理解では、これはif(lit){ ... } else if(caps || lit){...}
Cスタイルの構文に変換されます。その場合、orステートメントは冗長ではありませんか?(or caps lit)
キャップがの場合に条件が呼び出される条件はありnil
ますか?