diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-02-19 17:19:31 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-12 19:15:26 +0100 |
commit | 7da662fb9eb519625b3833fec34419c32620f041 (patch) | |
tree | 2d7c8fad2e9e469a754fde76e81a5c0f50b756a1 /erts/emulator/beam/erl_hashmap.c | |
parent | 903740ac57b00d404f430876b82cb21e0bb684a3 (diff) | |
download | otp-7da662fb9eb519625b3833fec34419c32620f041.tar.gz otp-7da662fb9eb519625b3833fec34419c32620f041.tar.bz2 otp-7da662fb9eb519625b3833fec34419c32620f041.zip |
erts: Move erlang:is_hashmap/1 to maps
Diffstat (limited to 'erts/emulator/beam/erl_hashmap.c')
-rw-r--r-- | erts/emulator/beam/erl_hashmap.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/erts/emulator/beam/erl_hashmap.c b/erts/emulator/beam/erl_hashmap.c index 064ae73acd..e51767146e 100644 --- a/erts/emulator/beam/erl_hashmap.c +++ b/erts/emulator/beam/erl_hashmap.c @@ -189,18 +189,9 @@ BIF_RETTYPE hashmap_remove_2(BIF_ALIST_2) { } /* hashmap:size/1 */ - /* erlang:is_hashmap/1 */ -BIF_RETTYPE is_hashmap_1(BIF_ALIST_1) { - if (is_hashmap(BIF_ARG_1)) { - BIF_RET(am_true); - } - BIF_RET(am_false); -} - -/* hashmap:is_key/2 - */ +/* hashmap:is_key/2 */ BIF_RETTYPE hashmap_is_key_2(BIF_ALIST_2) { if (is_hashmap(BIF_ARG_1)) { |