當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala int.<=用法及代碼示例


<= 方法(或屬性)屬於 scala.compiletime.ops.int 對象(object),其相關用法說明如下。

用法:

type <=[X <: Int, Y <: Int] <: Boolean

Less-or-equal 兩個 Int 單例類型的比較。

package scala.compiletime.ops
trait Snippet0 { self: int.type =>
  val lt1: 4 <= 2 = false
  val lt2: 2 <= 2 = true
}

源碼:

int.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 int.<=。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。