moogle 0.1.2

a data store for relational code
1
2
3
4
5
6
7
8
9
10
11
12
13
14

## TODOs


- More thorough unit testing
- Cute moogle logo.
- IntoIterator for &T for all builtin `.iter()`-providing Ts.
- Allow an iterator to stay alive during changes to the underlying object (by tracking the last key hit and using BTree operations)
- Allow multiple junctions to share a database and allow Prolog-like querying across that database.
- Add ToVecs which behave like ToSets except:
  - tracks and evicts based on insertion order
  - duplicate items are allowed
  - can be capped
  - Consider: ToVec-based junctions are no longer unique in what pairs they contain?
  - Consider: ToOrderedSet instead, or ToIxd? (indexed, but keeping the pairwise uniqueness guarantee)