JustBash.AST.CondBinary (JustBash v0.3.0)
View SourceConditional binary expression
Summary
Types
@type operator() ::
:=
| :==
| :!=
| :=~
| :<
| :>
| :"-eq"
| :"-ne"
| :"-lt"
| :"-le"
| :"-gt"
| :"-ge"
| :"-nt"
| :"-ot"
| :"-ef"
@type t() :: %JustBash.AST.CondBinary{ left: JustBash.AST.Word.t(), operator: operator(), right: JustBash.AST.Word.t() }