inline fun mutateElems(f: (Double) -> Double): ...
# announcements
d
inline fun mutateElems(f: (Double) -> Double): DoubleVector { storage.data.forEach { this[0] = f(this[0]) } return this }