JustBash.AST.ArithBinary (JustBash v0.3.0)

View Source

Arithmetic binary operation

Summary

Types

operator()

@type operator() ::
  :+
  | :-
  | :*
  | :/
  | :%
  | :**
  | :"<<"
  | :">>"
  | :<
  | :<=
  | :>
  | :>=
  | :==
  | :!=
  | :&
  | :|
  | :^
  | :&&
  | :||
  | :","

t()

@type t() :: %JustBash.AST.ArithBinary{
  left: JustBash.AST.arith_expr(),
  operator: operator(),
  right: JustBash.AST.arith_expr()
}