Return Value 戻り値
true
if the element was found in the sequence; otherwise, false
.
要素がシーケンスにおいて見つけられなかったならば、true
;そうでなければ、false
。
Availability 有効性
Technology
func contains(_ element: Self.Element) -> Bool
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
true
if the element was found in the sequence; otherwise, false
.
要素がシーケンスにおいて見つけられなかったならば、true
;そうでなければ、false
。
element
The element to find in the sequence. このシーケンスにおいて見つける要素。
This example checks to see whether a favorite actor is in an array storing a movie’s cast. この例は、お気に入りの俳優が映画出演者を格納する配列の中にいるかどうか見るために調べます。
let cast = ["Vivien", "Marlon", "Kim", "Karl"]
print(cast.contains("Marlon"))
// Prints "true"
print(cast.contains("James"))
// Prints "false"
Complexity
O(n), where n is the length of the sequence.