Cristi Cobzarenco
Cristi Cobzarenco
Optionally parse the config file as JSON if the filename ends in `.json`. Our deployment infrastructure generates JSON configs, but not TOML, so it'd be hard to integrate otherwise. Hope...
Because of the way views are implemented, an extra ref-counter is needed to store the number of views pointing to the same matrix **object**, in addition to the counter counting...
This is a side effect of the fact row() and column() return views: ``` import std.exception, scid.matvec; void main() { auto mat = Matrix!double([ [1.,2.], [3., 4.] ]); auto row...