Global
Location
-
Reference:
- Silver.dll .NET, .NET Standard 2.0
- silver.jar Cooper
- Silver.fx Island
- libSilver.fx Toffee
- Namespace: Swift
constructor <clinit> External Cooper
class method constructor <clinit>(+)
static void constructor <clinit>(+ )
static func constructor <clinit>(_ +)
static void constructor <clinit>(+ )
Shared Sub constructor <clinit>( As +)
Parameters:
- :
assert virtual
class method assert(condition: not nullable Func<not nullable Bool>; message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
static void assert(Func<not nullable Bool>! condition, Func<not nullable String>! message) file(String! file) line(UWord! line)
Parameters:
- condition:
- message:
- file:
- line:
assertionFailure virtual
class method assertionFailure(message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
Parameters:
- message:
- file:
- line:
autoreleasepool<T> (not nullable block(NSError): nullable T) error(NSError): nullable T virtual Toffee
static func autoreleasepool<T>(_ act: (NSError) -> T!, error $error: NSError) -> T!
Parameters:
- act:
- $error:
autoreleasepool<T> (not nullable block(): not nullable T): not nullable T virtual Toffee
static func autoreleasepool<T>(_ act: () -> T) -> T
Parameters:
- act:
C_ARGC virtual
class property C_ARGC: not nullable Int read;
class Int! C_ARGC { get; }
static var C_ARGC: Int { get{} }
class Int C_ARGC { __get; }
Shared ReadOnly Property C_ARGC() As Int
C_ARGV virtual
class property C_ARGV: not nullable Array<not nullable NativeString> read;
class Array<not nullable NativeString>! C_ARGV { get; }
static var C_ARGV: Array<not nullable NativeString> { get{} }
class Array<NativeString> C_ARGV { __get; }
Shared ReadOnly Property C_ARGV() As Array<not nullable NativeString>
count
class method count(source: nullable String): not nullable Int
static Int! count(String? source)
static func count(_ source: String?) -> Int
static Int count(String source)
Shared Function count(source As String?) As Int
Parameters:
- source:
count<T> (nullable array of not nullable T): not nullable Int
class method count<T>(source: nullable array of not nullable T): not nullable Int
static Int! count<T>(T![]? source)
static func count<T>(_ source: T...?) -> Int
static Int count<T>(T[] source)
Shared Function count<T>(source As T()?) As Int
Parameters:
- source:
count<T> (nullable IEnumerable<not nullable T>): not nullable Int
class method count<T>(source: nullable IEnumerable<not nullable T>): not nullable Int
static Int! count<T>(IEnumerable<not nullable T>? source)
static func count<T>(_ source: INSFastEnumeration<not nullable T>?) -> Int
static Int count<T>(Iterable<T> source)
Shared Function count<T>(source As IEnumerable<not nullable T>?) As Int
Parameters:
- source:
count<T> (nullable Array<not nullable T>): not nullable Int
class method count<T>(source: nullable Array<not nullable T>): not nullable Int
static Int! count<T>(Array<not nullable T>? source)
static func count<T>(_ source: Array<not nullable T>?) -> Int
static Int count<T>(Swift.Array<T> source)
Shared Function count<T>(source As Array<not nullable T>?) As Int
Parameters:
- source:
Parameters:
- object:
- separator:
Parameters:
- object:
- separator:
- terminator:
Parameters:
- object:
- terminator:
debugPrint (array of nullable Object) separator(not nullable String) terminator(nullable String) virtual
class method debugPrint(params objects: array of nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
static void debugPrint(params Object?[] objects) separator(String! separator) terminator(String? terminator)
Parameters:
- objects:
- separator:
- terminator:
debugPrint (nullable Object)
class method debugPrint(object: nullable Object)
static void debugPrint(Object? object)
static func debugPrint(_ object: Object?)
static void debugPrint(Object object)
Shared Sub debugPrint(object As Object?)
Parameters:
- object:
fatalError (not nullable Func<not nullable String>) file(not nullable String) line(not nullable UInt32) virtual
Parameters:
- message:
- file:
- line:
Parameters:
- file:
- line:
precondition virtual
class method precondition(condition: not nullable Func<not nullable Bool>; message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
static void precondition(Func<not nullable Bool>! condition, Func<not nullable String>! message) file(String! file) line(UWord! line)
static func precondition(_ condition: () -> Bool, _ message: () -> String, file: String, line: UWord)
Parameters:
- condition:
- message:
- file:
- line:
preconditionFailure virtual
class method preconditionFailure(message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
Parameters:
- message:
- file:
- line:
Parameters:
- objects:
- separator:
class method print(params objects: array of nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
Parameters:
- objects:
- separator:
- terminator:
Parameters:
- objects:
- terminator:
print (array of nullable Object)
class method print(params objects: array of nullable Object)
static void print(params Object?[] objects)
static func print(_ objects: Object?...)
static void print(Object[]... objects)
Shared Sub print(ParamArray objects As Object?())
Parameters:
- objects:
class method print object(object: nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
Parameters:
- object:
- separator:
- terminator:
print string(not nullable String) virtual
class method print string(string: not nullable String)
static void print string(String! string)
static func print(string: String)
static void print string(String string)
Shared Sub print string(string As String)
Parameters:
- string:
println
class method println(params objects: array of nullable Any)
static void println(params Any?[] objects)
static func println(_ objects: Any?...)
static void println(Any[]... objects)
Shared Sub println(ParamArray objects As Any?())
Parameters:
- objects:
readLine virtual
class method readLine stripNewline(stripNewline: not nullable Bool): not nullable String
static String! readLine stripNewline(Bool! stripNewline)
static func readLine(stripNewline: Bool) -> String
static String readLine stripNewline(Bool stripNewline)
Shared Function readLine stripNewline(stripNewline As Bool) As String
Parameters:
- stripNewline:
sequence<T> virtual
class method sequence<T> first(first: not nullable T) next(next: not nullable Func<not nullable T, wrapped nullable GenericNullable<T>>): not nullable IEnumerable<not nullable T>
static IEnumerable<not nullable T>! sequence<T> first(T! first) next(Func<not nullable T, wrapped nullable GenericNullable<T>>! next)
static func sequence<T>(first: T, next: (T) -> T?) -> INSFastEnumeration<not nullable T>
static Iterable<T> sequence<T> first(T first) next(Func2<T, T> next)
Shared Function sequence<T> first(first As T) next(next As Func (Of T, T?)) As IEnumerable<not nullable T>
Parameters:
- first:
- next:
split (not nullable String) isSeparator(not nullable Func<not nullable Char, not nullable Bool>) maxSplit(not nullable Int) allowEmptySlices(not nullable Bool): not nullable Array<not nullable String> virtual
class method split(elements: not nullable String) isSeparator(isSeparator: not nullable Func<not nullable Char, not nullable Bool>) maxSplit(maxSplit: not nullable Int) allowEmptySlices(allowEmptySlices: not nullable Bool): not nullable Array<not nullable String>
static Array<not nullable String>! split(String! elements) isSeparator(Func<not nullable Char, not nullable Bool>! isSeparator) maxSplit(Int! maxSplit) allowEmptySlices(Bool! allowEmptySlices)
static func split(_ elements: String, isSeparator: (Char) -> Bool, maxSplit: Int, allowEmptySlices: Bool) -> Array<not nullable String>
Parameters:
- elements:
- isSeparator:
- maxSplit:
- allowEmptySlices:
split (not nullable String) separatorChar(not nullable Char): not nullable Array<not nullable String> virtual
Parameters:
- elements:
- separator:
split (not nullable String) separatorString(not nullable String): not nullable Array<not nullable String> virtual
class method split(elements: not nullable String) separatorString(separator: not nullable String): not nullable Array<not nullable String>
Parameters:
- elements:
- separator:
startsWith
Parameters:
- s:
- prefix:
stride from(not nullable Double) to(not nullable Double) by(not nullable Double): not nullable INSFastEnumeration<nullable Double> virtual Toffee
static func stride(from start: Double, to end: Double, by stride: Double) -> INSFastEnumeration<nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> Island-Android, Island-Ubuntu, Island-WebAssembly-wasm32, Island-Windows
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable Iterable<Double> Cooper
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-watchOS, Island-watchOS Simulator
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable Iterable<Long> Cooper
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable IEnumerable<not nullable Int> Island
class method stride from(start: not nullable Int) through(end: not nullable Int) by(stride: not nullable Int): not nullable IEnumerable<not nullable Int>
static IEnumerable<not nullable Int>! stride from(Int! start) through(Int! end) by(Int! stride)
static func stride(from start: Int, through end: Int, by stride: Int) -> IEnumerable<not nullable Int>
Shared Function stride from(start As Int) through(end As Int) by(stride As Int) As IEnumerable<not nullable Int>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable IEnumerable<not nullable Int> .NET, .NET Standard 2.0
class method stride from(start: not nullable Int) through(end: not nullable Int) by(stride: not nullable Int): not nullable IEnumerable<not nullable Int>
static IEnumerable<not nullable Int>! stride from(Int! start) through(Int! end) by(Int! stride)
static func stride(from start: Int, through end: Int, by stride: Int) -> IEnumerable<not nullable Int>
Shared Function stride from(start As Int) through(end As Int) by(stride As Int) As IEnumerable<not nullable Int>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> .NET, .NET Standard 2.0
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable INSFastEnumeration<nullable Int> virtual Toffee
static func stride(from start: Int, through end: Int, by stride: Int) -> INSFastEnumeration<nullable Int>
Parameters:
- start:
- end:
- stride:
swap<T>
class method swap<T> a(var a: not nullable T) b(var b: not nullable T)
static void swap<T> a(ref T! a) b(ref T! b)
static func swap<T>(a: T, b: T)
static void swap<T> a(__ref T a) b(__ref T b)
Shared Sub swap<T> a(ByRef a As T) b(ByRef b As T)
Parameters:
- a:
- b:
type
// .NET, .NET Standard 2.0
class method type of(value: not nullable Any): not nullable Type
// Island
class method type of(value: not nullable Any): not nullable Type
// .NET, .NET Standard 2.0
static Type! type of(Any! value)
// Island
static Type! type of(Any! value)
static func type(of value: Any) -> Class
static Class<Object> type of(Any value)
// .NET, .NET Standard 2.0
Shared Function type of(value As Any) As Type
// Island
Shared Function type of(value As Any) As Type
Parameters:
- value:
UnwrapOrDie<T> virtual
class method UnwrapOrDie<T>(val: nullable T; error: not nullable NativeString): not nullable T
static T! UnwrapOrDie<T>(T? val, NativeString! error)
static func UnwrapOrDie<T>(_ val: T?, _ error: NativeString) -> T
static T UnwrapOrDie<T>(T val, NativeString error)
Shared Function UnwrapOrDie<T>(val As T?, error As NativeString) As T
Parameters:
- val:
- error:
C_ARGC virtual
class property C_ARGC: not nullable Int read;
class Int! C_ARGC { get; }
static var C_ARGC: Int { get{} }
class Int C_ARGC { __get; }
Shared ReadOnly Property C_ARGC() As Int
C_ARGV virtual
class property C_ARGV: not nullable Array<not nullable NativeString> read;
class Array<not nullable NativeString>! C_ARGV { get; }
static var C_ARGV: Array<not nullable NativeString> { get{} }
class Array<NativeString> C_ARGV { __get; }
Shared ReadOnly Property C_ARGV() As Array<not nullable NativeString>
constructor <clinit> External Cooper
class method constructor <clinit>(+)
static void constructor <clinit>(+ )
static func constructor <clinit>(_ +)
static void constructor <clinit>(+ )
Shared Sub constructor <clinit>( As +)
Parameters:
- :
assert virtual
class method assert(condition: not nullable Func<not nullable Bool>; message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
static void assert(Func<not nullable Bool>! condition, Func<not nullable String>! message) file(String! file) line(UWord! line)
Parameters:
- condition:
- message:
- file:
- line:
assertionFailure virtual
class method assertionFailure(message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
Parameters:
- message:
- file:
- line:
autoreleasepool<T> (not nullable block(NSError): nullable T) error(NSError): nullable T virtual Toffee
static func autoreleasepool<T>(_ act: (NSError) -> T!, error $error: NSError) -> T!
Parameters:
- act:
- $error:
autoreleasepool<T> (not nullable block(): not nullable T): not nullable T virtual Toffee
static func autoreleasepool<T>(_ act: () -> T) -> T
Parameters:
- act:
count
class method count(source: nullable String): not nullable Int
static Int! count(String? source)
static func count(_ source: String?) -> Int
static Int count(String source)
Shared Function count(source As String?) As Int
Parameters:
- source:
count<T> (nullable array of not nullable T): not nullable Int
class method count<T>(source: nullable array of not nullable T): not nullable Int
static Int! count<T>(T![]? source)
static func count<T>(_ source: T...?) -> Int
static Int count<T>(T[] source)
Shared Function count<T>(source As T()?) As Int
Parameters:
- source:
count<T> (nullable IEnumerable<not nullable T>): not nullable Int
class method count<T>(source: nullable IEnumerable<not nullable T>): not nullable Int
static Int! count<T>(IEnumerable<not nullable T>? source)
static func count<T>(_ source: INSFastEnumeration<not nullable T>?) -> Int
static Int count<T>(Iterable<T> source)
Shared Function count<T>(source As IEnumerable<not nullable T>?) As Int
Parameters:
- source:
count<T> (nullable Array<not nullable T>): not nullable Int
class method count<T>(source: nullable Array<not nullable T>): not nullable Int
static Int! count<T>(Array<not nullable T>? source)
static func count<T>(_ source: Array<not nullable T>?) -> Int
static Int count<T>(Swift.Array<T> source)
Shared Function count<T>(source As Array<not nullable T>?) As Int
Parameters:
- source:
Parameters:
- object:
- separator:
Parameters:
- object:
- separator:
- terminator:
Parameters:
- object:
- terminator:
debugPrint (array of nullable Object) separator(not nullable String) terminator(nullable String) virtual
class method debugPrint(params objects: array of nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
static void debugPrint(params Object?[] objects) separator(String! separator) terminator(String? terminator)
Parameters:
- objects:
- separator:
- terminator:
debugPrint (nullable Object)
class method debugPrint(object: nullable Object)
static void debugPrint(Object? object)
static func debugPrint(_ object: Object?)
static void debugPrint(Object object)
Shared Sub debugPrint(object As Object?)
Parameters:
- object:
fatalError (not nullable Func<not nullable String>) file(not nullable String) line(not nullable UInt32) virtual
Parameters:
- message:
- file:
- line:
Parameters:
- file:
- line:
precondition virtual
class method precondition(condition: not nullable Func<not nullable Bool>; message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
static void precondition(Func<not nullable Bool>! condition, Func<not nullable String>! message) file(String! file) line(UWord! line)
static func precondition(_ condition: () -> Bool, _ message: () -> String, file: String, line: UWord)
Parameters:
- condition:
- message:
- file:
- line:
preconditionFailure virtual
class method preconditionFailure(message: not nullable Func<not nullable String>) file(file: not nullable String) line(line: not nullable UWord)
Parameters:
- message:
- file:
- line:
Parameters:
- objects:
- separator:
class method print(params objects: array of nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
Parameters:
- objects:
- separator:
- terminator:
Parameters:
- objects:
- terminator:
print (array of nullable Object)
class method print(params objects: array of nullable Object)
static void print(params Object?[] objects)
static func print(_ objects: Object?...)
static void print(Object[]... objects)
Shared Sub print(ParamArray objects As Object?())
Parameters:
- objects:
class method print object(object: nullable Object) separator(separator: not nullable String) terminator(terminator: nullable String)
Parameters:
- object:
- separator:
- terminator:
print string(not nullable String) virtual
class method print string(string: not nullable String)
static void print string(String! string)
static func print(string: String)
static void print string(String string)
Shared Sub print string(string As String)
Parameters:
- string:
println
class method println(params objects: array of nullable Any)
static void println(params Any?[] objects)
static func println(_ objects: Any?...)
static void println(Any[]... objects)
Shared Sub println(ParamArray objects As Any?())
Parameters:
- objects:
readLine virtual
class method readLine stripNewline(stripNewline: not nullable Bool): not nullable String
static String! readLine stripNewline(Bool! stripNewline)
static func readLine(stripNewline: Bool) -> String
static String readLine stripNewline(Bool stripNewline)
Shared Function readLine stripNewline(stripNewline As Bool) As String
Parameters:
- stripNewline:
sequence<T> virtual
class method sequence<T> first(first: not nullable T) next(next: not nullable Func<not nullable T, wrapped nullable GenericNullable<T>>): not nullable IEnumerable<not nullable T>
static IEnumerable<not nullable T>! sequence<T> first(T! first) next(Func<not nullable T, wrapped nullable GenericNullable<T>>! next)
static func sequence<T>(first: T, next: (T) -> T?) -> INSFastEnumeration<not nullable T>
static Iterable<T> sequence<T> first(T first) next(Func2<T, T> next)
Shared Function sequence<T> first(first As T) next(next As Func (Of T, T?)) As IEnumerable<not nullable T>
Parameters:
- first:
- next:
split (not nullable String) isSeparator(not nullable Func<not nullable Char, not nullable Bool>) maxSplit(not nullable Int) allowEmptySlices(not nullable Bool): not nullable Array<not nullable String> virtual
class method split(elements: not nullable String) isSeparator(isSeparator: not nullable Func<not nullable Char, not nullable Bool>) maxSplit(maxSplit: not nullable Int) allowEmptySlices(allowEmptySlices: not nullable Bool): not nullable Array<not nullable String>
static Array<not nullable String>! split(String! elements) isSeparator(Func<not nullable Char, not nullable Bool>! isSeparator) maxSplit(Int! maxSplit) allowEmptySlices(Bool! allowEmptySlices)
static func split(_ elements: String, isSeparator: (Char) -> Bool, maxSplit: Int, allowEmptySlices: Bool) -> Array<not nullable String>
Parameters:
- elements:
- isSeparator:
- maxSplit:
- allowEmptySlices:
split (not nullable String) separatorChar(not nullable Char): not nullable Array<not nullable String> virtual
Parameters:
- elements:
- separator:
split (not nullable String) separatorString(not nullable String): not nullable Array<not nullable String> virtual
class method split(elements: not nullable String) separatorString(separator: not nullable String): not nullable Array<not nullable String>
Parameters:
- elements:
- separator:
startsWith
Parameters:
- s:
- prefix:
stride from(not nullable Double) to(not nullable Double) by(not nullable Double): not nullable INSFastEnumeration<nullable Double> virtual Toffee
static func stride(from start: Double, to end: Double, by stride: Double) -> INSFastEnumeration<nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> Island-Android, Island-Ubuntu, Island-WebAssembly-wasm32, Island-Windows
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable Iterable<Double> Cooper
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-watchOS, Island-watchOS Simulator
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable Iterable<Long> Cooper
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable IEnumerable<not nullable Int> Island
class method stride from(start: not nullable Int) through(end: not nullable Int) by(stride: not nullable Int): not nullable IEnumerable<not nullable Int>
static IEnumerable<not nullable Int>! stride from(Int! start) through(Int! end) by(Int! stride)
static func stride(from start: Int, through end: Int, by stride: Int) -> IEnumerable<not nullable Int>
Shared Function stride from(start As Int) through(end As Int) by(stride As Int) As IEnumerable<not nullable Int>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable IEnumerable<not nullable Int> .NET, .NET Standard 2.0
class method stride from(start: not nullable Int) through(end: not nullable Int) by(stride: not nullable Int): not nullable IEnumerable<not nullable Int>
static IEnumerable<not nullable Int>! stride from(Int! start) through(Int! end) by(Int! stride)
static func stride(from start: Int, through end: Int, by stride: Int) -> IEnumerable<not nullable Int>
Shared Function stride from(start As Int) through(end As Int) by(stride As Int) As IEnumerable<not nullable Int>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Double) through(not nullable Double) by(not nullable Double): not nullable IEnumerable<not nullable Double> .NET, .NET Standard 2.0
class method stride from(start: not nullable Double) through(end: not nullable Double) by(stride: not nullable Double): not nullable IEnumerable<not nullable Double>
static IEnumerable<not nullable Double>! stride from(Double! start) through(Double! end) by(Double! stride)
static func stride(from start: Double, through end: Double, by stride: Double) -> IEnumerable<not nullable Double>
Shared Function stride from(start As Double) through(end As Double) by(stride As Double) As IEnumerable<not nullable Double>
Parameters:
- start:
- end:
- stride:
stride from(not nullable Int) through(not nullable Int) by(not nullable Int): not nullable INSFastEnumeration<nullable Int> virtual Toffee
static func stride(from start: Int, through end: Int, by stride: Int) -> INSFastEnumeration<nullable Int>
Parameters:
- start:
- end:
- stride:
swap<T>
class method swap<T> a(var a: not nullable T) b(var b: not nullable T)
static void swap<T> a(ref T! a) b(ref T! b)
static func swap<T>(a: T, b: T)
static void swap<T> a(__ref T a) b(__ref T b)
Shared Sub swap<T> a(ByRef a As T) b(ByRef b As T)
Parameters:
- a:
- b:
type
// .NET, .NET Standard 2.0
class method type of(value: not nullable Any): not nullable Type
// Island
class method type of(value: not nullable Any): not nullable Type
// .NET, .NET Standard 2.0
static Type! type of(Any! value)
// Island
static Type! type of(Any! value)
static func type(of value: Any) -> Class
static Class<Object> type of(Any value)
// .NET, .NET Standard 2.0
Shared Function type of(value As Any) As Type
// Island
Shared Function type of(value As Any) As Type
Parameters:
- value:
UnwrapOrDie<T> virtual
class method UnwrapOrDie<T>(val: nullable T; error: not nullable NativeString): not nullable T
static T! UnwrapOrDie<T>(T? val, NativeString! error)
static func UnwrapOrDie<T>(_ val: T?, _ error: NativeString) -> T
static T UnwrapOrDie<T>(T val, NativeString error)
Shared Function UnwrapOrDie<T>(val As T?, error As NativeString) As T
Parameters:
- val:
- error: