Int16 Extension

Location

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

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

 

// .NET, .NET Standard 2.0
const Int16 max = 32767
// Island
const Int16! max = 32767

 

static let max: Int16 = 32767

 

static final SmallInt max = 32767

 

Dim max As Int16 = 32767

min

 

// .NET, .NET Standard 2.0
const min: Int16 = -32768;
// Island
const min: not nullable Int16 = -32768;

 

// .NET, .NET Standard 2.0
const Int16 min = -32768
// Island
const Int16! min = -32768

 

static let min: Int16 = -32768

 

static final SmallInt min = 32768

 

Dim min As Int16 = -32768