refactor: move simple8b encoder/decode

pull/24376/head
Edd Robinson 2019-12-04 13:14:20 +00:00
parent 46bbe4d317
commit 824044eac1
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
mod simple8b;

View File

@ -205,3 +205,6 @@ pub fn decode(v: u64, dst: &mut [u64]) -> usize {
_ => 0,
}
}
#[cfg(test)]
mod tests;