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
Currently one needs to
auto dataspace = DataSpace(DataSpace::dataspace_scalar);
to create a scalar dataspace. Note that,
auto dataspace = DataSpace{DataSpace::dataspace_scalar};
creates a one-dimensional simple dataspace with of shape [0]. It would be nicer to allow something like:
[0]
auto dataspace = DataSpace::Scalar(); auto dataspace = ScalarSpace(); auto dataspace = DataSpace::createScalar();
The text was updated successfully, but these errors were encountered:
Removing/changing DataSpace::dataspace_scalar might be something to consider for v3.
DataSpace::dataspace_scalar
Sorry, something went wrong.
Complete since merging: #900.
No branches or pull requests
Currently one needs to
to create a scalar dataspace. Note that,
creates a one-dimensional simple dataspace with of shape
[0]
. It would be nicer to allow something like:The text was updated successfully, but these errors were encountered: