diff options
| author | tslil <tslil@posteo.de> | 2025-10-31 11:29:08 +0000 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2025-10-31 11:55:36 +0000 |
| commit | f7c23142e8c73732fe3f75d03dc36e905f28715b (patch) | |
| tree | 7dc1e0c6919cc9469f013b6015d4dc9356c7a9c9 /rprt-engine/src/selection_functions/mod.rs | |
| parent | c16e21d82e3b398c572e48ccbf4ff896086425ef (diff) | |
Refactor selection functions into a module, one function per file
Diffstat (limited to 'rprt-engine/src/selection_functions/mod.rs')
| -rw-r--r-- | rprt-engine/src/selection_functions/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rprt-engine/src/selection_functions/mod.rs b/rprt-engine/src/selection_functions/mod.rs new file mode 100644 index 0000000..3f64be4 --- /dev/null +++ b/rprt-engine/src/selection_functions/mod.rs @@ -0,0 +1,5 @@ +pub mod function_character; +pub mod function_empty; +pub mod function_end; +pub mod result_transformation; +pub mod types; |
