You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we can only do the following when value has type CubePritimive.
value = some_function(/* ... */);
However, for many types, for example a tuple where are elements are CubePrimitive it should be easy to derive an assignment implementation that works elementwise.
I suggest introducing a new trait CubeAssign with a possible derive to support that feature for most CubeType.
The text was updated successfully, but these errors were encountered:
Currently, we can only do the following when
value
has typeCubePritimive
.However, for many types, for example a tuple where are elements are
CubePrimitive
it should be easy to derive an assignment implementation that works elementwise.I suggest introducing a new trait
CubeAssign
with a possible derive to support that feature for mostCubeType
.The text was updated successfully, but these errors were encountered: