RustQ.Rust.AST.BinaryOp (rustq v1.0.0-rc.4)

Copy Markdown View Source

Structural RustQ AST node. Prefer the focused builder modules for construction.

Summary

Types

t()

@type t() :: %RustQ.Rust.AST.BinaryOp{
  left: RustQ.Rust.AST.expr(),
  op:
    :eq
    | :ne
    | :lt
    | :lte
    | :gt
    | :gte
    | :add
    | :sub
    | :mul
    | :div
    | :rem
    | :and
    | :or,
  right: RustQ.Rust.AST.expr()
}