We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The discussion in pull request #10 lead to this issue: The API should support method and function calls in the style of numpy, i.e.
def op(self, (d1, d2, ,...), *args): ...
and
def op((d1, d2, ...), *args): ...
This is different to the current API, which looks like
def op(self, *datasets): ....
def op(*datasets): ...
respectively.
The text was updated successfully, but these errors were encountered:
PR #12 adresses this issue for concatenate by allowing both styles.
Sorry, something went wrong.
No branches or pull requests
The discussion in pull request #10 lead to this issue: The API should support method and function calls in the style of numpy, i.e.
and
This is different to the current API, which looks like
and
respectively.
The text was updated successfully, but these errors were encountered: