Description
I at least often find myself wondering "does ndarray support this? where should I look for it?".
ndarray has not bad reference documentation, but not enough of an overview that points into the reference.
I think overview documentation should explain as soon as possible what the library does, give examples of use of the core features, and relate the core design ideas necessary for using it (including linking to any terms that are going to come up, including the main types, traits etc. The crates.io entry [1] does the first well, but the module documentation [2] is a bit mixed up:
- Mentions N-dim array
- Skips forward to defining some main types (without explaining the design)
- Goes back to state the core features (no examples, though)
I would put all of the overview information in the module docs, leaving details to e.g., the ArrayBase page.
[1] https://crates.io/crates/ndarray
[2] https://bluss.github.io/rust-ndarray/master/ndarray/index.html