func contains(Range<IndexSet.Element>) -> Bool
Returns a Boolean value indicating whether the sequence contains the given element.
指定された要素をシーケンスが含むかどうかを指し示すブール値を返します。
func dropFirst (Int) -> Slice<IndexSet.RangeView>
Returns a subsequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいる下位シーケンスを返します。
func dropLast (Int) -> Slice<IndexSet.RangeView>
Returns a subsequence containing all but the specified number of final elements.
指定された数の末尾要素以外すべてを含んでいる下位シーケンスを返します。
func elementsEqual <OtherSequence>(OtherSequence) -> Bool
Returns a Boolean value indicating whether this sequence and another sequence contain the same elements in the same order.
このシーケンスともう一方のシーケンスが同じ要素を同じ順序で含むかどうかを指し示すブール値を返します。
func enumerated() -> EnumeratedSequence<IndexSet.RangeView>
Returns a sequence of pairs (n, x), where n represents a consecutive integer starting at zero and x represents an element of the sequence.
ペア (n, x) のシーケンスを返します、そこでnはゼロで開始する連続した数を表して、xはシーケンスの要素を表します。
func index(after: IndexSet.RangeView.Index) -> IndexSet.RangeView.Index
Returns the index in the range after the specified one.
指定されたものの後の範囲の中のインデックスを返します。
func index(before: IndexSet.RangeView.Index) -> IndexSet.RangeView.Index
Returns the index in the range before the specified one.
指定されたものの前の範囲の中のインデックスを返します。
func joined<Separator>(separator: Separator) -> JoinedSequence<IndexSet.RangeView>
Returns the concatenated elements of this sequence of sequences, inserting the given separator between each element.
各要素の間に与えられた分離子を挿入して、これらシーケンスに属するシーケンスの要素それらを鎖状に連結して返します。
func makeIterator () -> IndexingIterator<IndexSet.RangeView>
Returns an iterator over the indexes of this range view.
この範囲ビューのインデックスすべてを対象としたあるイテレータを返します。
func prefix(through: Int) -> Slice<IndexSet.RangeView>
Returns a subsequence from the start of the collection through the specified position.
コレクションの始まりから指定された位置までも含む下位シーケンスを返します。
func prefix(upTo : Int) -> Slice<IndexSet.RangeView>
Returns a subsequence from the start of the collection up to, but not including, the specified position.
コレクションの始まりから指定された位置まで、しかしそれは含めない下位シーケンスを返します。
func reversed() -> ReversedCollection<IndexSet.RangeView>
Returns a view presenting the elements of the collection in reverse order.
コレクションの要素を逆順に表しているある見方を返します。
func split(separator: Range<IndexSet.Element>, maxSplits : Int, omittingEmptySubsequences : Bool) -> [Slice<IndexSet.RangeView>]
Returns the longest possible subsequences of the collection, in order, around elements equal to the given element.
与えられた要素と等しい要素を避けるようにして、このコレクションの最も長くなりうる下位シーケンスを、順番に返します。
func starts<PossiblePrefix>( with: PossiblePrefix) -> Bool
Returns a Boolean value indicating whether the initial elements of the sequence are the same as the elements in another sequence.
シーケンスの最初の要素らが別のシーケンスの中の要素らと同じかどうかを指し示すブール値を返します。
func suffix(Int) -> Slice<IndexSet.RangeView>
Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの末尾の要素を含めて返します。
func suffix(from: Int) -> Slice<IndexSet.RangeView>
Returns a subsequence from the specified position to the end of the collection.
指定された位置からコレクションの終わりまでの下位シーケンスを返します。