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
We notice this pattern when needing interoperability with DDC
ddc::for_each( ddom, [&](ddc::DiscreteElement<DDim> const delem) { int const raw_integer = delem - ddom.front(); not_a_ddc_container[raw_integer] = ....; });
it would be easier to have a loop generating the DiscreteVector like
DiscreteVector
ddc::for_each_with_discrete_vector( ddom, [&](ddc::DiscreteVector<DDim> const dvec) { not_a_ddc_container[dvec] = ...; });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We notice this pattern when needing interoperability with DDC
it would be easier to have a loop generating the
DiscreteVector
likeThe text was updated successfully, but these errors were encountered: