FIX: Make clippy happy. Manual fixes
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
7756ef7f48
commit
9a4e798313
@@ -141,9 +141,9 @@ impl Model {
|
|||||||
/// * 1 - Perform a search starting at the first item. This is the default.
|
/// * 1 - Perform a search starting at the first item. This is the default.
|
||||||
/// * -1 - Perform a reverse search starting at the last item.
|
/// * -1 - Perform a reverse search starting at the last item.
|
||||||
/// * 2 - Perform a binary search that relies on lookup_array being sorted
|
/// * 2 - Perform a binary search that relies on lookup_array being sorted
|
||||||
/// in ascending order. If not sorted, invalid results will be returned.
|
/// in ascending order. If not sorted, invalid results will be returned.
|
||||||
/// * -2 - Perform a binary search that relies on lookup_array being sorted
|
/// * -2 - Perform a binary search that relies on lookup_array being sorted
|
||||||
/// in descending order. If not sorted, invalid results will be returned.
|
/// in descending order. If not sorted, invalid results will be returned.
|
||||||
pub(crate) fn fn_xlookup(&mut self, args: &[Node], cell: CellReferenceIndex) -> CalcResult {
|
pub(crate) fn fn_xlookup(&mut self, args: &[Node], cell: CellReferenceIndex) -> CalcResult {
|
||||||
if args.len() < 3 || args.len() > 6 {
|
if args.len() < 3 || args.len() > 6 {
|
||||||
return CalcResult::new_args_number_error(cell);
|
return CalcResult::new_args_number_error(cell);
|
||||||
|
|||||||
@@ -62,8 +62,8 @@ pub struct DefinedName {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// * state:
|
/// * state:
|
||||||
/// 18.18.68 ST_SheetState (Sheet Visibility Types)
|
/// 18.18.68 ST_SheetState (Sheet Visibility Types)
|
||||||
/// hidden, veryHidden, visible
|
/// hidden, veryHidden, visible
|
||||||
#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)]
|
#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)]
|
||||||
pub enum SheetState {
|
pub enum SheetState {
|
||||||
Visible,
|
Visible,
|
||||||
|
|||||||
Reference in New Issue
Block a user