-
Notifications
You must be signed in to change notification settings - Fork 0
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
Implement explicit type conversion #104
Comments
Honestly i think this would be one of the biggest improvements to the language in its current form. Type conversions always trip me up and it isn't getting any more familiar |
Yeah - I also noticed some friction in this space playing with your huaman eval examples - could you please post a couple of examples where in specific you are missing this feature, @joshcarp ? |
The main one was with asserts. An empty type is always instantiated as an any slice/map so
So this basically happens every time you need to:
|
The need for it also popped up here: |
I have implemented
var.(<type>)
conversions on my fork.The text was updated successfully, but these errors were encountered: