hash-copy

This commit is contained in:
Danny Yoo 2011-11-07 19:02:07 -05:00
parent db278efcd1
commit c02c40f93e
6 changed files with 23 additions and 0 deletions

View File

@ -101,6 +101,7 @@
'make-immutable-hash
'make-immutable-hasheqv
'make-immutable-hasheq
'hash-copy
'hash-ref
'hash-has-key?
'hash-set!

View File

@ -133,6 +133,10 @@
this.hash = hash;
};
WhalesongHashtable.prototype.clone = function() {
return new WhalesongHashtable(this.type, this.hash_function, this.equality_function, this.hash.clone());
};
WhalesongHashtable.prototype.toWrittenString = function (cache) {
var keys = this.hash.keys();
var ret = [], i;

View File

@ -2571,6 +2571,13 @@
return initializeHash(lst, plt.baselib.hashes.makeEqualHashtable());
});
installPrimitiveProcedure(
'hash-copy',
1,
function(M) {
var hash = checkMutableHash(M, 'hash-copy', 0);
return hash.clone();
});
installPrimitiveProcedure(
'hash',

View File

@ -161,6 +161,7 @@
make-immutable-hash
make-immutable-hasheqv
make-immutable-hasheq
hash-copy
hash-ref
hash-set!
hash-set

View File

@ -52,3 +52,6 @@ true
#hash((1 . one) (2 . two))
#hasheqv((1 . one) (2 . two))
#hasheq((1 . one) (2 . two))
A
alphabet

View File

@ -125,3 +125,10 @@
(hasheqv 1 'one 2 'two)
(hasheq 1 'one 2 'two)
(newline)
(let* ([h1 (make-hash '((a . "A")))]
[h2 (hash-copy h1)])
(hash-set! h2 'a "alphabet")
(displayln (hash-ref h1 'a))
(displayln (hash-ref h2 'a)))