refactor: defer SrcLayerData lookups in RawBatch #25
Reference in New Issue
Block a user
Delete Branch "push-nxrynoorswrw"
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?
Replace eager resolution of
Vec<u32>values with anArc<SrcLayerData>handle passed alongsideVec<CanonicalKmer>. This shifts the lookup logic to the subsequent transform step, reducing memory overhead and enabling shared, thread-safe access to the source layer data.