2

在下面的示例中,我遇到了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驱动程序一样使用iterate,而不是原始函数。我将如何做到这一点,以便使用正确count的?

4

2 回答 2

2

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

(remprop 'count 'iter::synonym)

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

于 2012-12-16T14:10:51.590 回答
1

这是如何iterate处理其主体的错误/功能。

您可以使用iteratefrom rutils的一个版本- 它使用关键字而不是普通符号,因此不会出现符号冲突。

于 2012-12-16T13:38:32.587 回答