-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update for new type constructors #86
Comments
Also a type parameter can now have type parameters of its own. And don't forget that all these things can have type constraints. |
Thanks, updated the issue |
Actually, I can’t find this in |
Ooh, I see, it’s |
note this change @sadmac7000 @lucaswerkmeister
@gavinking are type constructors still an “experimental feature” in 1.2? If yes, I’ll slip this. |
Yes. |
@lucaswerkmeister when you do take this on, can you consider doing it in a feature branch for 1.2? I certainly don't want to push you into extra work, so if this doesn't make sense when the time comes, please disregard. |
The main reason I like to wait for the spec is that Other than that… I’m not sure what your asking. Do you mean when I get around to adding type constructors, I should do it on a branch based on the 1.2 tag rather than whatever |
Yes, cool, thanks! |
<T> => X<T>
), including type constraints<T>(T t) => t
), including type constraintstt<T>(T t) => t
)The text was updated successfully, but these errors were encountered: