-
Notifications
You must be signed in to change notification settings - Fork 28
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
Added Array type
#79
Added Array type
#79
Conversation
Fix Array type internal definition
fetch upstream
added tests
for field "_0"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very impressive work, thanks!
I have many lower-level comments and change requests, but overall it looks good. Please go through all my comments and solve them.
@Meowcolm024 Okay, we're almost there! But there are a bunch of old and new unresolved conversations. Please don't forget to mark these as resolved when you're sure you've resolved them. It'll helps us a lot. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay great. I'll squash-merge this now!
Added type
Array[T]
as a super type of tuples. Following:(a, b, c) <: Array[a | b | c]
as in #63