exercising hash-values, hash-keys, hash-map, hash-for-each
This commit is contained in:
parent
005fa3f762
commit
bcbfa5f10e
|
@ -195,6 +195,18 @@
|
||||||
return VOID;
|
return VOID;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
installPrimitiveProcedure(
|
||||||
|
'write',
|
||||||
|
makeList(1, 2),
|
||||||
|
function (M) {
|
||||||
|
var firstArg = M.e[M.e.length - 1];
|
||||||
|
var outputPort = M.params.currentOutputPort;
|
||||||
|
if (M.a === 2) {
|
||||||
|
outputPort = checkOutputPort(M, 'write', 1);
|
||||||
|
}
|
||||||
|
outputPort.writeDomNode(M, toDomNode(firstArg, 'write'));
|
||||||
|
return VOID;
|
||||||
|
});
|
||||||
|
|
||||||
installPrimitiveProcedure(
|
installPrimitiveProcedure(
|
||||||
'write-byte',
|
'write-byte',
|
||||||
|
|
|
@ -438,9 +438,9 @@ box?
|
||||||
string-append
|
string-append
|
||||||
string->list
|
string->list
|
||||||
list->string
|
list->string
|
||||||
;; string-copy
|
|
||||||
string->symbol
|
string->symbol
|
||||||
symbol->string
|
symbol->string
|
||||||
|
|
||||||
format
|
format
|
||||||
printf
|
printf
|
||||||
fprintf
|
fprintf
|
||||||
|
|
|
@ -71,3 +71,12 @@ false
|
||||||
false
|
false
|
||||||
false
|
false
|
||||||
true
|
true
|
||||||
|
|
||||||
|
(author name)
|
||||||
|
(author name)
|
||||||
|
(graham-knuth-patashnik concrete-mathematics)
|
||||||
|
(graham-knuth-patashnik concrete-mathematics)
|
||||||
|
"author"
|
||||||
|
"name"
|
||||||
|
"graham-knuth-patashnik"
|
||||||
|
"concrete-mathematics"
|
||||||
|
|
|
@ -152,3 +152,32 @@
|
||||||
(hash-eqv? (make-hash))
|
(hash-eqv? (make-hash))
|
||||||
(hash-eqv? (make-hasheq))
|
(hash-eqv? (make-hasheq))
|
||||||
(hash-eqv? (make-hasheqv))
|
(hash-eqv? (make-hasheqv))
|
||||||
|
|
||||||
|
|
||||||
|
(newline)
|
||||||
|
(hash-keys (make-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik))))
|
||||||
|
(hash-keys (make-immutable-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik))))
|
||||||
|
(hash-values (make-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik))))
|
||||||
|
(hash-values (make-immutable-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik))))
|
||||||
|
(hash-map (make-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik)))
|
||||||
|
(lambda (k v) (list v k)))
|
||||||
|
(hash-map (make-immutable-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik)))
|
||||||
|
(lambda (k v) (list v k)))
|
||||||
|
|
||||||
|
(hash-for-each (make-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik)))
|
||||||
|
(lambda (k v)
|
||||||
|
(write (symbol->string k))
|
||||||
|
(newline)))
|
||||||
|
|
||||||
|
(hash-for-each (make-immutable-hash '((name . concrete-mathematics)
|
||||||
|
(author . graham-knuth-patashnik)))
|
||||||
|
(lambda (k v)
|
||||||
|
(write (symbol->string v))
|
||||||
|
(newline)))
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
(define version "1.71")
|
(define version "1.72")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user