Skip to content

stdlib: Add BIF binary:split/2 and binary:split/3 #771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bootstrap/lib/stdlib/ebin/binary.beam
Binary file not shown.
5 changes: 3 additions & 2 deletions erts/emulator/beam/atom.names
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,9 @@ atom bif_timer_server
atom binary
atom binary_bin_to_list_trap
atom binary_copy_trap
atom binary_find_trap
atom binary_longest_prefix_trap
atom binary_longest_suffix_trap
atom binary_match_trap
atom binary_matches_trap
atom binary_to_list_continue
atom binary_to_term_trap
atom block
Expand Down Expand Up @@ -584,6 +583,8 @@ atom trace trace_ts traced
atom trace_control_word
atom tracer
atom trap_exit
atom trim
atom trim_all
atom try_clause
atom true
atom tuple
Expand Down
7 changes: 7 additions & 0 deletions erts/emulator/beam/bif.tab
Original file line number Diff line number Diff line change
Expand Up @@ -643,3 +643,10 @@ bif erts_debug:map_info/1
#

bif erlang:hash/2

#
# New in ?.
#

bif binary:split/2
bif binary:split/3
Loading