Check if a value is less than or equal to another.
檢查一個值是否小于或等于其它的值。
Each value is compared to the next one in order, and results are combined in one output. For example, 1 <= 1 <= 3 is true, while 3 <= 3 <= 1 is false.
每個值按順序與下一個值進行比較,結果合并在一個輸出中。
例:1 <= 1 <= 3 為真,而 3 <= 3 <= 1為假。
Right-click to add more values to compare, or change the type (ex: number, index, boolean).
輸入口
Input 輸入
The base value.
基礎值。
Input 輸入
The value to compare to the base.
和基礎值做比較的值。
輸出口
Output 輸出
A boolean that is true if the base value is less than or equal to the subsequent values.
如果基礎值小于或等于后續值,則布爾值為真。