From 6686b6765992f86c208949925c1c3c09cbb31353 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Sun, 17 May 2026 17:46:35 -0500 Subject: Add sliding hann window --- src/window_size.rs | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/window_size.rs') 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, -- cgit v1.2.3