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
At the moment, you have to do a lot of type writing for different actions you make + you could typo and won't get an error until runtime. On an Array for example:
Being able to infer the type of the array, given that we knew it when we created it would be lovely. One option would be to wrap the Array into a typed Array that we expose to the users:
At the moment, you have to do a lot of type writing for different actions you make + you could typo and won't get an error until runtime. On an
Array
for example:Being able to infer the type of the array, given that we knew it when we created it would be lovely. One option would be to wrap the Array into a typed Array that we expose to the users:
This would allow inferring types for many different things, also for when we start running modification ops like
abs()
Example that will quickly become outdated in #31
The text was updated successfully, but these errors were encountered: