You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a handful of operations on arrays that are not well-supported today. While you can define arrays statically and generate them dynamically with comprehensions, it becomes difficult to perform certain operations like concatenating and slicing. The workarounds for these operations are overly complex and perform poorly.
We should add the following set of built-ins to operate on arrays:
There are a handful of operations on arrays that are not well-supported today. While you can define arrays statically and generate them dynamically with comprehensions, it becomes difficult to perform certain operations like concatenating and slicing. The workarounds for these operations are overly complex and perform poorly.
We should add the following set of built-ins to operate on arrays:
Note that
concat
is already used for string concatenation. If we want to use the same name we need to add support for overloading in the type checker.The text was updated successfully, but these errors were encountered: