We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just installed this library using Guix (guile-pfds v.0.3), but I encounter behaviors I cannot explain:
(use-modules (srfi srfi-1)) (use-modules (pfds hamts)) (define make-string-hamt (lambda () (make-hamt string-hash string=?))) (define hamt (fold (lambda (i hamt) (hamt-set hamt (format #f "~d" i) i)) (make-string-hamt) (iota 100))) (hamt-size hamt)
returns 78. Stranger, even:
(define hamt (hamt-set hamt "1" 1)) (hamt-ref hamt "1" #f)
Returns #f.
#f
My version of guile is the v3.0.9.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I just installed this library using Guix (guile-pfds v.0.3), but I encounter behaviors I cannot explain:
returns 78. Stranger, even:
Returns
#f
.My version of guile is the v3.0.9.
The text was updated successfully, but these errors were encountered: