blob: a817dcfb9f1910a748cfebe88925b1745faa6adb (
plain)
1
2
3
4
5
6
7
8
9
10
|
use crate::selection::Selection;
use crate::selection_functions::types::{SFArguments, SFResult};
pub fn empty_sequential(_: SFArguments) -> SFResult {
Ok(Selection::empty())
}
pub fn empty_structural(_: SFArguments) -> SFResult {
Ok(Selection::empty())
}
|