BinaryOperator enum
// Expressions
Values
- equals → const BinaryOperator
-
const BinaryOperator('==')
- notEquals → const BinaryOperator
-
const BinaryOperator('!=')
- identical → const BinaryOperator
-
const BinaryOperator('===')
- notIdentical → const BinaryOperator
-
const BinaryOperator('!==')
- minus → const BinaryOperator
-
const BinaryOperator('-')
- plus → const BinaryOperator
-
const BinaryOperator('+')
- d → const BinaryOperator
-
const BinaryOperator('/')
- multiply → const BinaryOperator
-
const BinaryOperator('*')
- modulo → const BinaryOperator
-
const BinaryOperator('%')
- and → const BinaryOperator
-
const BinaryOperator('&&')
- or → const BinaryOperator
-
const BinaryOperator('||')
- lower → const BinaryOperator
-
const BinaryOperator('<')
- lowerEquals → const BinaryOperator
-
const BinaryOperator('<=')
- bigger → const BinaryOperator
-
const BinaryOperator('>')
- biggerEquals → const BinaryOperator
-
const BinaryOperator('>=')
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
byOpStr(
String opStr) → BinaryOperator?
Constants
-
values
→ const List<
BinaryOperator> - A constant List of the values in this enum, in order of their declaration.