LCM - Lander Common Module #46
Labels
No Label
Kind/Bug
Kind/Enhancement
Kind/Feature
Project/Lander
Project/Landerctl
idea
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Chewing_Bever/lander#46
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
I'm beginning to notice that I'm often repeating myself in the various modules, e.g. creating linked lists or automatically expanding arrays. Besides this, many of the data structures that I write for one module (e.g. tries for LSM) could be useful in other modules as well.
Therefore, I'd like to separate these shared parts into a separate module, the Lander Common Module. This module would basically act as my own expansion C stdlib, providing common datastructures and methods.
This does bring some dififculties with it: module tests would now need to link this other module, and all projects using one of the modules now also need to provide this common module.