UInt8 Extension

Location

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

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: Byte = 255;
// Island
const max: not nullable UInt8 = 255;

 

// .NET, .NET Standard 2.0
const Byte max = 255
// Island
const UInt8! max = 255

 

// .NET, .NET Standard 2.0
static let max: Byte = 255
// Island, Toffee
static let max: UInt8 = 255

 

static final Byte max = 255

 

// .NET, .NET Standard 2.0
Dim max As Byte = 255
// Island
Dim max As UInt8 = 255

min

 

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

 

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

 

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

 

static final Byte min = 0

 

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