ndtable 0.1.1

Simple dense and sparse multi-dimensional tables
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ndtable: simple dense and sparse multi-dimensional tables

[![Crate](https://img.shields.io/crates/v/ndtable.svg?logo=rust)](https://crates.io/crates/ndtable)
[![Documentation](https://img.shields.io/docsrs/ndtable/0.1.1?logo=rust)](https://docs.rs/ndtable/0.1.1/)
[![Minimum Rust 1.91.0](https://img.shields.io/crates/msrv/ndtable/0.1.1.svg?logo=rust&color=orange)](https://releases.rs/docs/1.91.0/)
[![Lines of Code](https://www.aschey.tech/tokei/github/gendx/ndtable?category=code&branch=0.1.1)](https://github.com/gendx/ndtable/tree/0.1.1)
[![Dependencies](https://deps.rs/crate/ndtable/0.1.1/status.svg)](https://deps.rs/crate/ndtable/0.1.1)
[![License](https://img.shields.io/crates/l/ndtable/0.1.1.svg)](https://github.com/gendx/ndtable/blob/0.1.1/LICENSE)
[![Codecov](https://codecov.io/gh/gendx/ndtable/branch/0.1.1/graph/badge.svg)](https://codecov.io/gh/gendx/ndtable/tree/0.1.1)
[![Build Status](https://github.com/gendx/ndtable/actions/workflows/build.yml/badge.svg?branch=0.1.1)](https://github.com/gendx/ndtable/actions/workflows/build.yml)
[![Test Status](https://github.com/gendx/ndtable/actions/workflows/tests.yml/badge.svg?branch=0.1.1)](https://github.com/gendx/ndtable/actions/workflows/tests.yml)

This crate implements simple multi-dimensional tables, for use in dynamic
programming algorithms, memoization, etc. It offers two implementations: a dense
table `TableNd` and a sparse table `SparseTableNd`.