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
Given we never request a mutable reference to Dataset, one could argue you should never be able to get a mutable reference to an owned, constituent component of the Dataset, as we have done here.
The text was updated successfully, but these errors were encountered:
yes thats right. It was probably overlooked at some point. We could introduce something as an OwnedRasterband.... However you don't even need to mutate something on purpose. Using RasterIO can (and will in many cases) modify some global variables.
Currently, the following compiles, but the test fails:
Given we never request a mutable reference to
Dataset
, one could argue you should never be able to get a mutable reference to an owned, constituent component of theDataset
, as we have done here.The text was updated successfully, but these errors were encountered: