Merge branch 'trunk' into gen-equality

This commit is contained in:
Richard Feldman 2021-02-12 19:13:01 -05:00 committed by GitHub
commit 76a9461cfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 2123 additions and 53 deletions

View file

@ -742,6 +742,7 @@ define_builtins! {
12 ARG_CLOSURE: "#arg_closure" // symbol used to store the closure record
13 LIST_EQ: "#list_eq" // internal function that checks list equality
14 GENERIC_EQ: "#generic_eq" // internal function that checks generic equality
15 GENERIC_HASH: "#generic_hash" // internal function that checks list equality
}
1 NUM: "Num" => {
0 NUM_NUM: "Num" imported // the Num.Num type alias
@ -893,6 +894,11 @@ define_builtins! {
3 DICT_SINGLETON: "singleton"
4 DICT_GET: "get"
5 DICT_INSERT: "insert"
6 DICT_LEN: "len"
// This should not be exposed to users, its for testing the
// hash function ONLY
7 DICT_TEST_HASH: "hashTestOnly"
}
7 SET: "Set" => {
0 SET_SET: "Set" imported // the Set.Set type alias