ogma
ogma copied to clipboard
[FEATURE] `Map` data structure
Description
Implement a Map
structure.
Implement through ogma itself; def-ty Map { t:Table }
.
Considerations:
- [ ] Overload the
.
to returnMap.key = value
(string keys...) - [ ] Will require implementation of modules
- [ ] Will require implementation of better table searching (binary search)
- [ ] Table is just key,value columns
- [ ] Heterogeneous values?
- [ ] Heterogeneous keys?