UInt32 Extension

Location

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

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: UInt32 = 4294967295;
// Island
const max: not nullable UInt32 = 4294967295;

 

// .NET, .NET Standard 2.0
const UInt32 max = 4294967295
// Island
const UInt32! max = 4294967295

 

static let max: UInt32 = 4294967295

 

static final Integer max = -1

 

Dim max As UInt32 = 4294967295

min

 

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

 

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

 

static let min: UInt32 = 0

 

static final Integer min = 0

 

Dim min As UInt32 = 0