-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add support for ValueTuple #524
Add support for ValueTuple #524
Conversation
@@ -42,6 +42,7 @@ From .Net/F# | |||
- ``Map<'T,'U>`` | |||
- ``TimeSpan`` | |||
- ``Tuple<*>`` | |||
- ``ValueTuple<*>`` |
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.
This is tricky. either we support ValueTuple<n>
with n < 8
or we do some kind of reflection trick for those tuples greater than 8.
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.
we support for n >= 0 and n <= 8
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.
Should I remove this line?
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.
No, in that case just change it to ValueTuple<*> (* up to 8 elements)
…igues/valueTupple
This reverts commit 5084858.
9af5645
to
7b50816
Compare
No description provided.