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


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


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

用法:

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

X 二進製左移 Y

package scala.compiletime.ops
trait Snippet0 { self: int.type =>
  val lshift: 1 << 2 = 4
}

源碼:

int.scala

相關用法


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