[][src]Trait fortraith::minus

pub trait minus {
    type Result;
}

( - ) Subtract the top element from the second top element

Examples

forth!(
    7 5 -
    return type Out as top
);
assert_eq!(Out::eval(), 2);

Associated Types

type Result

Loading content...

Implementors

Loading content...