We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tuple
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
an intuitive DRY way of writing repetitive tuple type argument patterns, e.g.
tuple[S, S, T, T, T, T, S, T, S, T, S, T]
could be written as
type Spam[S, T] = 2 * tuple[S] + 4 * tuple[T] + 3 * tuple[S, T]
or
type Spam[S, T] = 2 * (S,) + 4 * (T,) + 3 * (S, T)
this only involves the + and * binary infix operators
+
*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
an intuitive DRY way of writing repetitive tuple type argument patterns, e.g.
could be written as
or
this only involves the
+
and*
binary infix operatorsThe text was updated successfully, but these errors were encountered: