Isabell H.

Results 7 issues of Isabell H.

This commit adds the eep draft for nominal types. I plan to make a post on Erlang forum, introducing nominal types. The post will refer to this pull request.

This PR is a continuation of #8615. I merged the previous one by mistake before it was ready. When an atom is created, we now create a binary literal of...

testing

This EEP proposes the addition of zip generators with a syntax of `&&` for comprehensions in Erlang. The idea and syntax of zip generators (comprehension multigenerators) was first brought up...

When the pattern in a binary generator is of the form `X:Y/float`, the previous skip clause could never match. The skip pattern is changed to `_:Y/integer`, so that it can...

team:VM

We introduce zip generators for comprehensions to reduce the need for users to use lists:zip. Zip generators have the syntax of `generator1 && ... && generatorN`, where each generator can...

team:VM

Add guard BIF `erlang:is_between/3` according to EEP-16. This BIF takes in 3 parameters, `Term`, `LowerBound`, and `UpperBound`. It returns `true` if `Term`, `LowerBound`, and `UpperBound` are all integers, and `LowerBound...

team:VM

The support for zip archives for packaging Erlang applications is an experimental features, and as such can be subject to incompatible changes. The support for archives in the code server...

team:VM