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


Scala int.S用法及代碼示例


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

用法:

type S[N <: Int] <: Int

自然數的後繼,其中 0 是 0 類型,後繼減少,就好像定義是:

package scala.compiletime.ops
trait Snippet0 { self: int.type =>
  type S[N <: Int] <: Int = N match {
    case 0 => 1
    case 1 => 2
    case 2 => 3
    // ...
    case 2147483646 => 2147483647
  }
}

源碼:

int.scala

相關用法


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