如何明确使用标准函数?

时间:2012-12-16 11:36:14

标签: lisp common-lisp loops

我在下面的示例中遇到了与iteratecount标准函数的名称冲突:

(defun svs-to-images (file)
  (with-open-file (stream file)
    (iterate:iter
      (iterate:for line #:= (read-line stream nil nil))
      (iterate:while line)
      (line-to-image
       (iterate:iter
         (iterate:for c #:in-string line)
         (iterate:with word)
         (iterate:with pos #:= 0)
         (iterate:with result #:= ; ---------\/ here
                       (make-array (list (1+ (count #\, line)))
                                   :element-type 'fixnum))
         (if (char= c #\,)
             (setf (aref result pos)
                   (parse-integer
                    (coerce (reverse word) 'string))
                   pos (1+ pos)
                   word nil)
             (setf word (cons c word)))
         (iterate:finally result)) 28))))

我得到的错误是:

csv-parser.lisp:19:5:
  error: 
    during macroexpansion of
    (ITERATE:ITER
      (ITERATE:FOR LINE #:= ...)
      (ITERATE:WHILE LINE)
      ...).
    Use *BREAK-ON-SIGNALS* to intercept:

     Iterate, in (COUNT , LINE):
    Missing value for LINE keyword

Compilation failed.

而且,如果我理解正确,它会尝试使用count,就好像它是来自count的{​​{1}}驱动程序,而不是原始函数。我如何才能使用正确的iterate

2 个答案:

答案 0 :(得分:2)

在comp.lang.lisp中,Chris Riesbeck几年前提出这个问题作为类似问题的解决方法:

(remprop 'count 'iter::synonym)

从那时起,您需要使用COUNTING作为iterate子句。 CL:COUNT则应该引用Common Lisp函数。您需要重新编译代码。

答案 1 :(得分:1)

这是iterate如何处理其身体的错误/特征。

您可以使用rutils中的iterate版本 - 它使用关键字而不是普通符号,因此不存在符号冲突。