hash-map and hash-for-each
This commit is contained in:
parent
588ff1644b
commit
86e584b983
|
@ -14,10 +14,12 @@
|
|||
(all-from-out "private/list.rkt")
|
||||
(all-from-out "list.rkt")
|
||||
(all-from-out "private/map.rkt")
|
||||
(all-from-out "private/hash.rkt")
|
||||
quasiquote)
|
||||
|
||||
(require "private/list.rkt"
|
||||
"private/map.rkt"
|
||||
"private/hash.rkt"
|
||||
"list.rkt"
|
||||
(only-in "private/qq-and-or.rkt" quasiquote))
|
||||
|
||||
|
|
29
lang/private/hash.rkt
Normal file
29
lang/private/hash.rkt
Normal file
|
@ -0,0 +1,29 @@
|
|||
#lang s-exp "../kernel.rkt"
|
||||
|
||||
(provide hash-map hash-for-each)
|
||||
|
||||
(define (hash-map a-hash f)
|
||||
(unless (hash? a-hash)
|
||||
(raise-type-error 'hash-map "hash" a-hash))
|
||||
(unless (and (procedure? f) (procedure-arity-includes? f 2))
|
||||
(raise-type-error 'hash-map "procedure (arity 2)" f))
|
||||
(let loop ([keys (hash-keys a-hash)])
|
||||
(if (null? keys)
|
||||
'()
|
||||
(cons (f (car keys) (hash-ref a-hash (car keys)))
|
||||
(loop (rest keys))))))
|
||||
|
||||
|
||||
(define (hash-for-each a-hash f)
|
||||
(unless (hash? a-hash)
|
||||
(raise-type-error 'hash-for-each "hash" a-hash))
|
||||
(unless (and (procedure? f) (procedure-arity-includes? f 2))
|
||||
(raise-type-error 'hash-for-each "procedure (arity 2)" f))
|
||||
(let loop ([keys (hash-keys a-hash)])
|
||||
(if (null? keys)
|
||||
(void)
|
||||
(begin
|
||||
(f (car keys) (hash-ref a-hash (car keys)))
|
||||
(loop (rest keys))))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user