From f7c23142e8c73732fe3f75d03dc36e905f28715b Mon Sep 17 00:00:00 2001 From: tslil Date: Fri, 31 Oct 2025 11:29:08 +0000 Subject: Refactor selection functions into a module, one function per file --- rprt-engine/src/selection_functions/function_empty.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rprt-engine/src/selection_functions/function_empty.rs (limited to 'rprt-engine/src/selection_functions/function_empty.rs') diff --git a/rprt-engine/src/selection_functions/function_empty.rs b/rprt-engine/src/selection_functions/function_empty.rs new file mode 100644 index 0000000..8290de3 --- /dev/null +++ b/rprt-engine/src/selection_functions/function_empty.rs @@ -0,0 +1,10 @@ +use crate::selection::Selection; +use crate::selection_functions::types::{SFArguments, SFResult}; + +pub fn empty_sequential(_: SFArguments) -> SFResult { + Ok(Selection::empty()) +} + +pub fn empy_structural(_: SFArguments) -> SFResult { + Ok(Selection::empty()) +} -- cgit v1.2.3