美文网首页
6.7 Less Than or Equal 小于或等于 - L

6.7 Less Than or Equal 小于或等于 - L

作者: 刘板栗 | 来源:发表于2017-02-22 18:31 被阅读15次

    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.
    如果基础值小于或等于后续值,则布尔值为真。


    相关模块

    And Equals 等于 Equals Exactly 完全等于 Greater Than 大于 Greater Than or Equal 大于或等于 Less Than 小于 Not 翻转 Or 或


    相关文章

      网友评论

          本文标题:6.7 Less Than or Equal 小于或等于 - L

          本文链接:https://www.haomeiwen.com/subject/mthfwttx.html