matten 0.22.3

A family-car multidimensional array (tensor) library for small numerical trials / PoCs.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Dynamic boundary parsers: mixed JSON and CSV into `Vec<Element>` (RFC-011 ยง11).
//!
//! Each submodule is gated on the feature that provides the required dependency:
//! `json` for `serde_json` and `csv` for the `csv` crate.

#[cfg(feature = "json")]
pub(crate) mod json;

#[cfg(feature = "csv")]
pub(crate) mod csv;