Skip to content

added update functions #19

New issue

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions collections-lib/data/collection/indexable.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,26 @@

(provide
gen:indexable indexable? indexable/c
ref set-ref)
ref set-ref update-ref)

(define-generics indexable
(ref indexable . _)
(set-ref indexable . _)
(update-ref indexable . _)
#:defaults
([hash? (define ref hash-ref)
(define set-ref hash-set)]
(define set-ref hash-set)
(define update-ref hash-update)]
[dict? (define ref dict-ref)
(define set-ref dict-set)]
(define set-ref dict-set)
(define update-ref dict-update)]
[sequence? (define ref nth)
(define set-ref set-nth)]))
(define set-ref set-nth)
(define update-ref update-nth)]
)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don’t put close parentheses on their own line.

#:fallbacks
[(define/generic ref* ref)
(define/generic set-ref* set-ref)
(define (update-ref indexable index proc)
(let ([old (ref* indexable index)])
(set-ref* indexable index (proc old))))])