A closure that takes an element of the sequence as its argument and returns a Boolean value indicating whether the element should be included in the returned collection. あるクロージャ、それはシーケンスの1つの要素をそれの引数として取り、その要素が返されるコレクションに含まれるべきかどうかを指し示しているブール値を返します。
Instance Method
インスタンスメソッド
filter(_:)
Returns a new collection of the same type containing, in order, the elements of the original collection that satisfy the given predicate.
オリジナルのコレクションの要素で与えられた述部を満たすものを、順序正しく、含んでいる同じ型の新しいコレクションを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func filter(_ isIncluded: (String
.UnicodeScalarView
.Element
) throws -> Bool
) rethrows -> Substring
.UnicodeScalarView
Parameters パラメータ
isIncluded
Return Value 戻り値
A collection of the elements that is
allowed.
is
を認められた要素それらからなるあるコレクション。
Discussion 解説
In this example, filter(_:)
is used to include only names shorter than five characters.
この例において、filter(_:)
は5つの文字より短い名前のみ含めるために使われます。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。