File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55
55
- Added ` supervisor:which_children/1 ` and ` supervisor:count_children/1 `
56
56
- Added ` monitored_by ` in ` process_info/2 `
57
57
- Added mock implementation for ` current_stacktrace ` in ` process_info `
58
- - Added ` lists:keyfind ` , ` lists:keymember ` , ` lists:member ` and ` erlang:list_to_bitstring `
58
+ - Added ` erlang:list_to_bitstring `
59
+ - Reimplemented ` lists:keyfind ` , ` lists:keymember ` and ` lists:member ` as NIFs
59
60
60
61
### Changed
61
62
Original file line number Diff line number Diff line change @@ -784,8 +784,7 @@ static const struct Nif list_to_bitstring_nif = {
784
784
.base .type = NIFFunctionType ,
785
785
.nif_ptr = nif_erlang_list_to_bitstring_1
786
786
};
787
- static const struct Nif zlib_compress_nif =
788
- {
787
+ static const struct Nif zlib_compress_nif = {
789
788
.base .type = NIFFunctionType ,
790
789
.nif_ptr = nif_zlib_compress_1
791
790
};
You can’t perform that action at this time.
0 commit comments