Skip to content

Commit a928c30

Browse files
authored
refactor: breakdown twomap into multiple modules (#65)
* refactor: convert twomap.rs file into a cmap2 module * refactor: move cmap tests into a dedicated file * refactor: move struct & constructor definition to dedicated file * refactor: move utils impl block to dedicated module * refactor: move (un)sew/link methods to dedicated module * refactor: move basic ops to dedicated module * refactor: move vertex code to an embed module this will also be the module that holds R/W code for generic attributes * refactor: move some content to a common root module * doc: add doc for each new private modules in cmap2/
1 parent 436e8ed commit a928c30

File tree

12 files changed

+1746
-1670
lines changed

12 files changed

+1746
-1670
lines changed

honeycomb-core/src/cells/mod.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,3 @@
66

77
pub mod collections;
88
pub mod orbits;
9-
10-
// ------ CONTENT
11-
12-
/// Type definition for dart identifiers
13-
///
14-
/// This is used for better control over memory usage and ID encoding.
15-
pub type DartIdentifier = u32;
16-
17-
/// Null value for dart identifiers
18-
pub const NULL_DART_ID: DartIdentifier = 0;

0 commit comments

Comments
 (0)