1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
   Appellation: unary <mod>
   Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Unary Operations
//!
//!
pub use self::{kinds::*, operator::*, specs::*};

pub(crate) mod kinds;
pub(crate) mod operator;
pub(crate) mod specs;

pub trait Unary {
    type Output;

    fn name(&self) -> &str;

    fn unary(self, expr: UnaryOp) -> Self::Output;
}

#[cfg(test)]
mod tests {}