`assv` seems implemented as `assq`
okuoku opened this issue · 2 comments
okuoku commented
Tested: https://github.com/justinethier/cyclone/tree/cf66cf1057fcd687cc42d4d7dcaeeef00cba089b
It seems assv
implemented as assq
.
cyclone> (define a 0.0)
ok
cyclone> (assoc a (list (list a)))
(0.0)
cyclone> (assoc 0.0 (list (list a)))
(0.0)
cyclone> (assv a (list (list a)))
(0.0)
cyclone> (assv 0.0 (list (list a)))
#f
Did you mean assv
here?
Line 5395 in 6ffd229
(and maybe memvp
here
Line 5409 in 6ffd229
xref: #375
justinethier commented
Good catch, let me take a look.
justinethier commented
Thanks for the report @okuoku. This is now fixed on our primary branch in GitHub.