文書   >   Swift   >  String   >   Substring   >   removeAll(where:)


インスタンスメソッド


removeAll(where:)


与えられた述語 (predicate) を満たす全ての要素を削除します。





宣言


mutating func removeAll(where shouldBeRemoved: (Character) throws -> Bool) rethrows


パラメータ


shouldBeRemovedシーケンスの要素をその引数として取り、要素をコレクションから削除するかどうかを示すブール値を返すクロージャ。


議論


このメソッドを使用して、特定の基準を満たすコレクション内のすべての要素を削除します。残りの要素の順序は保持されます。この例では、文字列から母音をすべて削除します。


var phrase = "The rain in Spain stays mainly in the plain."

let vowels: Set<Character> = ["a", "e", "i", "o", "u"]
phrase.removeAll(where: { vowels.contains($0) })
// phrase == "Th rn n Spn stys mnly n th pln."


複雑さ: O(n)、ここで n はコレクションの長さです。

















トップへ(Swift 標準ライブラリ)












トップへ(Swift 標準ライブラリ)












トップへ(Swift 標準ライブラリ)












トップへ(Swift 標準ライブラリ)
目次
Xcode の新機能

  • 言語:Swift
  • SDK
  • Xcode 10.0+
  • Framework
  • Swift 標準ライブラリ
  • 宣言
  • パラメータ
  • 議論












  • トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)












    トップへ(Swift 標準ライブラリ演算子)