Looks like there is no single way to "ustrip all values in an array, as efficiently as possible". - `ustrip(x)`: efficient for `Array` (reinterprets), not efficient for `range` (materializes); also, deprecated - `ustrip.(x)`: efficient for `range` of `Quantities` (keeps a range), not efficient for `range` of regular numbers or for `Array` (materializes/copies) Would be great to have such a way!