Int8 Extension

Location

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

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: SByte = 127;
// Island
const max: not nullable Int8 = 127;

 

// .NET, .NET Standard 2.0
const SByte max = 127
// Island
const Int8! max = 127

 

// .NET, .NET Standard 2.0
static let max: SByte = 127
// Island, Toffee
static let max: Int8 = 127

 

static final Byte max = 127

 

// .NET, .NET Standard 2.0
Dim max As SByte = 127
// Island
Dim max As Int8 = 127

min

 

// .NET, .NET Standard 2.0
const min: SByte = -128;
// Island
const min: not nullable Int8 = -128;

 

// .NET, .NET Standard 2.0
const SByte min = -128
// Island
const Int8! min = -128

 

// .NET, .NET Standard 2.0
static let min: SByte = -128
// Island, Toffee
static let min: Int8 = -128

 

static final Byte min = 128

 

// .NET, .NET Standard 2.0
Dim min As SByte = -128
// Island
Dim min As Int8 = -128