Keisuke Nishida <[EMAIL PROTECTED]> writes: > The following code makes an error. Is this a feature or a bug? > > guile> (hash-fold acons () (make-vector 5)) It's a bug in the above expression. (make-vector 5) makes a vector with #<unspecified> as elements. This is not a hash table. Instead, try (hash-fold acons '() (make-vector 5 '())) Best regards, /mdj
- hash-fold Keisuke Nishida
- Re: hash-fold Mikael Djurfeldt
- Re: hash-fold Marius Vollmer
- Re: hash-fold Michael Livshin
- Re: hash-fold Mikael Djurfeldt
- Re: hash-fold Mikael Djurfeldt
