fix: code cleanup, documentation

This commit is contained in:
Volodymyr Orlov
2020-08-27 11:37:14 -07:00
parent 7a7b0d6875
commit aa458d22fa
10 changed files with 147 additions and 64 deletions
+1 -2
View File
@@ -5,8 +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;
#[derive(Debug, PartialEq)]
pub enum FunctionOrder {
FIRST,
pub enum FunctionOrder {
SECOND,
THIRD,
}