cellOptionsOverride
Parameters
- self:*const Banded
- *const Banded
- cell_opts:CellOptions
- CellOptions
Source
Implementation
pub fn cellOptionsOverride(self: *const Banded, cell_opts: CellOptions) Banded {
return .{
.banding = self.banding,
.cell_opts = self.cell_opts.override(cell_opts),
.alt_cell_opts = self.alt_cell_opts,
.opts = self.opts,
};
}