This is a tracking issue regarding the implementation of dynamically sized arrays.
This reflects the work that is required for an initial release of Mun with array support (arrays v0.1). This will allow the construction and use of arrays but will still miss a lot of essential features to make working with them easier.
Out of scope
Things that are out of scope for this initial v0.1 version:
- Querying the length of an array
- Resizing an array
- Appending to an array
Required work
This is a tracking issue regarding the implementation of dynamically sized arrays.
This reflects the work that is required for an initial release of Mun with array support (
arrays v0.1). This will allow the construction and use of arrays but will still miss a lot of essential features to make working with them easier.Out of scope
Things that are out of scope for this initial v0.1 version:
Required work
Array types
Mun must have support for array types so we can pass them around in code.
Array construction
Enable the construction of arrays from mun code.
Open questions
Array indexing support.