Less than or equal - <=
Logical nodes
Last updated
Logical nodes
Last updated
Released in version:
1.0.12
Flutter/Dart link:
The "Less than or equal <=" node is a logical node where we look for the result if item1 is Less than or equal to item2. If item1 is less than or equal to item2, true is returned. If item1 is greater than item2, false is returned
item1 is greater than item2
false
item1 is equal to item2
true
item1 is less than item2
true
The "less than or equal" node has multiple variations depending on the type as shown in the table below:
Double
Double
Less than or equal - Double <= Double
Double
Int
Less than or equal - Double <= Int
Int
Int
Less than or equal - Int <= Int
Inputs
item1
Depends on the node
Condition 1
item2
Depends on the node
Condition 2
Outputs
result
Bool
Result from applying the <= operator to "item1" and "item2" inputs