diff options
| author | tslil <tslil@posteo.de> | 2026-03-21 08:49:35 +0000 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-03-21 17:26:50 +0000 |
| commit | c22cc3b348bdcb446fb0e44070da36fdf6b05800 (patch) | |
| tree | 81371ff735529e7b2a5b1727be9c8b06123609e6 /rprt-engine/src/selection_functions/function_empty.rs | |
| parent | 5a5da7bc299bee12072e421d1936554690e34dd6 (diff) | |
big rework to support evaluation of selection functions, WiP
Diffstat (limited to 'rprt-engine/src/selection_functions/function_empty.rs')
| -rw-r--r-- | rprt-engine/src/selection_functions/function_empty.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rprt-engine/src/selection_functions/function_empty.rs b/rprt-engine/src/selection_functions/function_empty.rs index a817dcf..bf0a45c 100644 --- a/rprt-engine/src/selection_functions/function_empty.rs +++ b/rprt-engine/src/selection_functions/function_empty.rs @@ -1,5 +1,7 @@ -use crate::selection::Selection; -use crate::selection_functions::types::{SFArguments, SFResult}; +use crate::{ + selection::Selection, + selection_functions::types::{SFArguments, SFResult}, +}; pub fn empty_sequential(_: SFArguments) -> SFResult { Ok(Selection::empty()) |
