ISliceable<SubSlice,SubSequence,Index,Distance,Element>

Overview

Location

 

 

property count: not nullable Int read;

 

Int! count { get; }

 

var count: Int { get{} }

 

Int count { __get; }

 

ReadOnly Property count() As Int

endIndex    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
property endIndex: not nullable Index read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
property endIndex: not nullable Index read;

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Index! endIndex { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Index! endIndex { get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
var endIndex: Index { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
var endIndex: Index { get{} }
// Toffee
var endIndex: Index { get{} }

 

Index endIndex { __get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
ReadOnly Property endIndex() As Index
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
ReadOnly Property endIndex() As Index

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
property first: nullable Element read;
// Island-WebAssembly-wasm32
property first: nullable Element read;
// Island-Windows-arm64
property first: nullable Element read;

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
Element? first { get; }
// Island-WebAssembly-wasm32
Element? first { get; }
// Island-Windows-arm64
Element? first { get; }

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
var first: Element? { get{} }
// Island-WebAssembly-wasm32
var first: Element? { get{} }
// Island-Windows-arm64, Toffee
var first: Element? { get{} }

 

Element first { __get; }

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
ReadOnly Property first() As Element?
// Island-WebAssembly-wasm32
ReadOnly Property first() As Element?
// Island-Windows-arm64
ReadOnly Property first() As Element?

 

property isEmpty: not nullable Bool read;

 

Bool! isEmpty { get; }

 

var isEmpty: Bool { get{} }

 

Bool isEmpty { __get; }

 

ReadOnly Property isEmpty() As Bool

 

property Item[bounds: not nullable Range]: not nullable SubSequence read;

 

SubSequence! Item[Range! bounds] { get; }

 

subscript Item(_ bounds: Range) -> SubSequence { get{} }

 

SubSequence Item[Range bounds] { __get; }

 

ReadOnly Property Item(bounds As Range) As SubSequence

Item

 

property Item[bounds: not nullable Range]: not nullable SubSlice read;

 

SubSlice! Item[Range! bounds] { get; }

 

subscript Item(_ bounds: Range) -> SubSlice { get{} }

 

SubSlice Item[Range bounds] { __get; }

 

ReadOnly Property Item(bounds As Range) As SubSlice

Item    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0
property Item[position: not nullable Index]: not nullable Element read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
property Item[position: not nullable Index]: not nullable Element read;
// Island-WebAssembly-wasm32
property Item[position: not nullable Index]: not nullable Element read;
// Island-Windows-arm64
property Item[position: not nullable Index]: not nullable Element read;

 

// .NET, .NET Standard 2.0
Element! Item[Index! position] { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
Element! Item[Index! position] { get; }
// Island-WebAssembly-wasm32
Element! Item[Index! position] { get; }
// Island-Windows-arm64
Element! Item[Index! position] { get; }

 

// .NET, .NET Standard 2.0
subscript Item(_ position: Index) -> Element { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
subscript Item(_ position: Index) -> Element { get{} }
// Island-WebAssembly-wasm32
subscript Item(_ position: Index) -> Element { get{} }
// Island-Windows-arm64
subscript Item(_ position: Index) -> Element { get{} }
// Toffee
subscript Item(_ position: Index) -> Element { get{} }

 

Element Item[Index position] { __get; }

 

// .NET, .NET Standard 2.0
ReadOnly Property Item(position As Index) As Element
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
ReadOnly Property Item(position As Index) As Element
// Island-WebAssembly-wasm32
ReadOnly Property Item(position As Index) As Element
// Island-Windows-arm64
ReadOnly Property Item(position As Index) As Element

prefix through(not nullable Index): not nullable SubSequence    (declared in CollectionType<SubSequence,Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method prefix through(through: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method prefix through(through: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! prefix through(Index! through)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! prefix through(Index! through)

 

func prefix(through: Index) -> SubSequence

 

SubSequence prefix through(Index through)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function prefix through(through As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function prefix through(through As Index) As SubSequence

Parameters:

  • through:

prefix upTo(not nullable Index): not nullable SubSequence    (declared in CollectionType<SubSequence,Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method prefix upTo(upTo: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method prefix upTo(upTo: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! prefix upTo(Index! upTo)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! prefix upTo(Index! upTo)

 

func prefix(upTo: Index) -> SubSequence

 

SubSequence prefix upTo(Index upTo)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function prefix upTo(upTo As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function prefix upTo(upTo As Index) As SubSequence

Parameters:

  • upTo:

startIndex    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
property startIndex: not nullable Index read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
property startIndex: not nullable Index read;

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Index! startIndex { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Index! startIndex { get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
var startIndex: Index { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
var startIndex: Index { get{} }
// Toffee
var startIndex: Index { get{} }

 

Index startIndex { __get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
ReadOnly Property startIndex() As Index
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
ReadOnly Property startIndex() As Index

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method suffix from(from: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method suffix from(from: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! suffix from(Index! from)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! suffix from(Index! from)

 

func suffix(from: Index) -> SubSequence

 

SubSequence suffix from(Index from)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function suffix from(from As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function suffix from(from As Index) As SubSequence

Parameters:

  • from:

 

 

property count: not nullable Int read;

 

Int! count { get; }

 

var count: Int { get{} }

 

Int count { __get; }

 

ReadOnly Property count() As Int

endIndex    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
property endIndex: not nullable Index read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
property endIndex: not nullable Index read;

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Index! endIndex { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Index! endIndex { get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
var endIndex: Index { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
var endIndex: Index { get{} }
// Toffee
var endIndex: Index { get{} }

 

Index endIndex { __get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
ReadOnly Property endIndex() As Index
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
ReadOnly Property endIndex() As Index

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
property first: nullable Element read;
// Island-WebAssembly-wasm32
property first: nullable Element read;
// Island-Windows-arm64
property first: nullable Element read;

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
Element? first { get; }
// Island-WebAssembly-wasm32
Element? first { get; }
// Island-Windows-arm64
Element? first { get; }

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
var first: Element? { get{} }
// Island-WebAssembly-wasm32
var first: Element? { get{} }
// Island-Windows-arm64, Toffee
var first: Element? { get{} }

 

Element first { __get; }

 

// .NET, .NET Standard 2.0, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
ReadOnly Property first() As Element?
// Island-WebAssembly-wasm32
ReadOnly Property first() As Element?
// Island-Windows-arm64
ReadOnly Property first() As Element?

 

property isEmpty: not nullable Bool read;

 

Bool! isEmpty { get; }

 

var isEmpty: Bool { get{} }

 

Bool isEmpty { __get; }

 

ReadOnly Property isEmpty() As Bool

 

property Item[bounds: not nullable Range]: not nullable SubSequence read;

 

SubSequence! Item[Range! bounds] { get; }

 

subscript Item(_ bounds: Range) -> SubSequence { get{} }

 

SubSequence Item[Range bounds] { __get; }

 

ReadOnly Property Item(bounds As Range) As SubSequence

Item

 

property Item[bounds: not nullable Range]: not nullable SubSlice read;

 

SubSlice! Item[Range! bounds] { get; }

 

subscript Item(_ bounds: Range) -> SubSlice { get{} }

 

SubSlice Item[Range bounds] { __get; }

 

ReadOnly Property Item(bounds As Range) As SubSlice

Item    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0
property Item[position: not nullable Index]: not nullable Element read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
property Item[position: not nullable Index]: not nullable Element read;
// Island-WebAssembly-wasm32
property Item[position: not nullable Index]: not nullable Element read;
// Island-Windows-arm64
property Item[position: not nullable Index]: not nullable Element read;

 

// .NET, .NET Standard 2.0
Element! Item[Index! position] { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
Element! Item[Index! position] { get; }
// Island-WebAssembly-wasm32
Element! Item[Index! position] { get; }
// Island-Windows-arm64
Element! Item[Index! position] { get; }

 

// .NET, .NET Standard 2.0
subscript Item(_ position: Index) -> Element { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
subscript Item(_ position: Index) -> Element { get{} }
// Island-WebAssembly-wasm32
subscript Item(_ position: Index) -> Element { get{} }
// Island-Windows-arm64
subscript Item(_ position: Index) -> Element { get{} }
// Toffee
subscript Item(_ position: Index) -> Element { get{} }

 

Element Item[Index position] { __get; }

 

// .NET, .NET Standard 2.0
ReadOnly Property Item(position As Index) As Element
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows-i386, Island-Windows-x86_64
ReadOnly Property Item(position As Index) As Element
// Island-WebAssembly-wasm32
ReadOnly Property Item(position As Index) As Element
// Island-Windows-arm64
ReadOnly Property Item(position As Index) As Element

startIndex    (declared in Indexable<Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
property startIndex: not nullable Index read;
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
property startIndex: not nullable Index read;

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Index! startIndex { get; }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Index! startIndex { get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
var startIndex: Index { get{} }
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
var startIndex: Index { get{} }
// Toffee
var startIndex: Index { get{} }

 

Index startIndex { __get; }

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
ReadOnly Property startIndex() As Index
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
ReadOnly Property startIndex() As Index

 

prefix through(not nullable Index): not nullable SubSequence    (declared in CollectionType<SubSequence,Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method prefix through(through: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method prefix through(through: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! prefix through(Index! through)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! prefix through(Index! through)

 

func prefix(through: Index) -> SubSequence

 

SubSequence prefix through(Index through)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function prefix through(through As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function prefix through(through As Index) As SubSequence

Parameters:

  • through:

prefix upTo(not nullable Index): not nullable SubSequence    (declared in CollectionType<SubSequence,Index,Distance,Element>)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method prefix upTo(upTo: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method prefix upTo(upTo: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! prefix upTo(Index! upTo)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! prefix upTo(Index! upTo)

 

func prefix(upTo: Index) -> SubSequence

 

SubSequence prefix upTo(Index upTo)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function prefix upTo(upTo As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function prefix upTo(upTo As Index) As SubSequence

Parameters:

  • upTo:

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
method suffix from(from: not nullable Index): not nullable SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method suffix from(from: not nullable Index): not nullable SubSequence

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
SubSequence! suffix from(Index! from)
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
SubSequence! suffix from(Index! from)

 

func suffix(from: Index) -> SubSequence

 

SubSequence suffix from(Index from)

 

// .NET, .NET Standard 2.0, Island-WebAssembly-wasm32
Function suffix from(from As Index) As SubSequence
// Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
Function suffix from(from As Index) As SubSequence

Parameters:

  • from: