From 84e76dbdcefedddc19b8e318e31a0620296776a4 Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Tue, 23 Jan 2024 17:23:04 -0600 Subject: [PATCH] remove duplicate vec utils defined in the read_impls --- packages/signals/src/impls.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/packages/signals/src/impls.rs b/packages/signals/src/impls.rs index 1c648883a..25334f3be 100644 --- a/packages/signals/src/impls.rs +++ b/packages/signals/src/impls.rs @@ -52,20 +52,6 @@ macro_rules! read_impls { self.with(|v| *v == *other) } } - - impl $ty, $($vec_bound_ty)?> { - /// Returns the length of the inner vector. - #[track_caller] - pub fn len(&self) -> usize { - self.with(|v| v.len()) - } - - /// Returns true if the inner vector is empty. - #[track_caller] - pub fn is_empty(&self) -> bool { - self.with(|v| v.is_empty()) - } - } }; }