having method
Implementation
Matrix3d<T> having({(int, int)? ld, ({int x, int y, int z})? offset}) =>
Matrix3d._(
_entries,
(
ld != null ? ld.$1 : this.dimensions.$1,
ld != null ? ld.$2 : this.dimensions.$2,
this.dimensions.$3,
),
(
ld != null ? ld.$1 : this._strides.$1,
ld != null ? ld.$2 : this._strides.$2,
this._strides.$3,
),
offset ?? this.offset,
);