btree-map 0.1.0

A data structure for storing and manipulating fixed number of elements of a specific type.
Documentation
#![allow(warnings)]

// Work in progress...

use stack_array::Array;

struct BtreeMap<K , V, const N: usize> {
    len: usize,
    nodes: Array<Node<K, V>, N>,
}

struct Node<K, V> {
    key: K,
    value: V,
    left: Option<usize>,
    right: Option<usize>,
}