Enum kailua_syntax::ast::BinOp [] [src]

pub enum BinOp {
    Add,
    Sub,
    Mul,
    Div,
    Pow,
    Mod,
    Cat,
    Lt,
    Le,
    Gt,
    Ge,
    Eq,
    Ne,
    And,
    Or,
}

A bunary operator.

Variants

+.

-.

*.

/.

^.

%.

...

<.

<=.

>.

>=.

==.

~=.

and.

or.

Methods

impl BinOp
[src]

Trait Implementations

impl Copy for BinOp
[src]

impl Clone for BinOp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BinOp
[src]

Formats the value using the given formatter.

impl PartialEq for BinOp
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for BinOp
[src]