aboutsummaryrefslogtreecommitdiff
path: root/rprt-engine/src/selection_functions/function_empty.rs
blob: bf0a45cfe57dcf9b9db7d12e76e595e514c09292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{
    selection::Selection,
    selection_functions::types::{SFArguments, SFResult},
};

pub fn empty_sequential(_: SFArguments) -> SFResult {
    Ok(Selection::empty())
}

pub fn empty_structural(_: SFArguments) -> SFResult {
    Ok(Selection::empty())
}