LCM - Lander Common Module #46
Labels
No labels
Kind/Bug
Kind/Enhancement
Kind/Feature
Project/Lander
Project/Landerctl
idea
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Chewing_Bever/lander#46
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. 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.