diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-05-17 17:46:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-17 17:46:35 -0500 |
| commit | 6686b6765992f86c208949925c1c3c09cbb31353 (patch) | |
| tree | af5b3374618e3fec9519cd10a052330dbe38379c /src/window_size.rs | |
| parent | 728e5d8395d74e72be86b5fad75acaa6fb219bc7 (diff) | |
Add sliding hann window
Diffstat (limited to 'src/window_size.rs')
| -rw-r--r-- | src/window_size.rs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/window_size.rs b/src/window_size.rs index 9d3f66b..b3547d6 100644 --- a/src/window_size.rs +++ b/src/window_size.rs @@ -49,21 +49,6 @@ impl WindowSize { } } - pub fn into_inner(self) -> usize { - match self { - Self::Size128 => 128, - Self::Size256 => 256, - Self::Size512 => 512, - Self::Size1024 => 1024, - Self::Size2048 => 2048, - Self::Size4096 => 4096, - Self::Size8192 => 8192, - Self::Size16384 => 16384, - Self::Size32768 => 32768, - Self::Custom(x) => x, - } - } - pub fn inner(&self) -> usize { match self { Self::Size128 => 128, |
