From 158f4d1d69fc77e594866fa5d78b45c6daa66ff0 Mon Sep 17 00:00:00 2001 From: Aaqa Ishtyaq Date: Wed, 11 Jan 2023 01:03:27 +0530 Subject: fix(tvix/eval): len_without_is_empty clippy warn This CL addresses clippy warning len_without_is_empty which expects `.is_empty()` method to be present when implementing `.len()` method for an item. Change-Id: I8878db630b9ef5853649a906b764a33299bb5dc8 Signed-off-by: Aaqa Ishtyaq Reviewed-on: https://cl.tvl.fyi/c/depot/+/7806 Reviewed-by: flokli Tested-by: BuildkiteCI --- tvix/eval/src/value/list.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tvix/eval/src/value/list.rs') diff --git a/tvix/eval/src/value/list.rs b/tvix/eval/src/value/list.rs index 70952419ab..6d830b7283 100644 --- a/tvix/eval/src/value/list.rs +++ b/tvix/eval/src/value/list.rs @@ -67,6 +67,10 @@ impl NixList { self.0.get(i) } + pub fn is_empty(&self) -> bool { + self.0.is_empty() + } + pub fn construct(count: usize, stack_slice: Vec) -> Self { debug_assert!( count == stack_slice.len(), -- cgit 1.4.1