UInt64 Extension

Location

  • Reference:
    • Silver.dll  .NET, .NET Standard 2.0
    • silver.jar  Cooper
    • Silver.fx  Island
    • libSilver.fx  Toffee
  • Namespace: Swift
  • Extends: UInt64

Constants


allZeros

 

// .NET, .NET Standard 2.0
const allZeros: Byte = 0;
// Island
const allZeros: not nullable UInt8 = 0;

 

// .NET, .NET Standard 2.0
const Byte allZeros = 0
// Island
const UInt8! allZeros = 0

 

// .NET, .NET Standard 2.0
static let allZeros: Byte = 0
// Island, Toffee
static let allZeros: UInt8 = 0

 

static final Byte allZeros = 0

 

// .NET, .NET Standard 2.0
Dim allZeros As Byte = 0
// Island
Dim allZeros As UInt8 = 0

max

 

// .NET, .NET Standard 2.0
const max: UInt64 = 18446744073709551615;
// Island
const max: not nullable UInt64 = 18446744073709551615;

 

// .NET, .NET Standard 2.0
const UInt64 max = 18446744073709551615
// Island
const UInt64! max = 18446744073709551615

 

static let max: UInt64 = 18446744073709551615

 

static final Int64 max = -1

 

Dim max As UInt64 = 18446744073709551615

min

 

// .NET, .NET Standard 2.0
const min: UInt64 = 0;
// Island
const min: not nullable UInt64 = 0;

 

// .NET, .NET Standard 2.0
const UInt64 min = 0
// Island
const UInt64! min = 0

 

static let min: UInt64 = 0

 

static final Int64 min = 0

 

Dim min As UInt64 = 0