Added additional doctest and fixed indices (#141)

This commit is contained in:
Chris McComb
2022-08-12 17:38:13 -04:00
committed by GitHub
parent b482acdc8d
commit d905ebea15
6 changed files with 22 additions and 9 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ pub type F<'a, T, X> = dyn for<'b> Fn(&'b X) -> T + 'a;
pub type DF<'a, X> = dyn for<'b> Fn(&'b mut X, &'b X) + 'a;
#[allow(clippy::upper_case_acronyms)]
#[derive(Debug, PartialEq)]
#[derive(Debug, PartialEq, Eq)]
pub enum FunctionOrder {
SECOND,
THIRD,