Swift .contains()
Anonymous contributor
Published Oct 23, 2022
The .contains() method returns true if the given element exists in the set, false otherwise.
Syntax
setName.contains(element)
setName is the set being searched, and element is the element being searched for.
Example
The following is an example of the .contains() method:
let numberSet: Set = [1, 2, 3, 4]let targetNumber = 2if numberSet.contains(targetNumber) {print("This set contains this number: \(targetNumber)")} else {print("This set does not contain this number: \(targetNumber)")}
This example results in the following output:
This set contains this number: 2
All contributors
- Anonymous contributor
Learn Swift on Codecademy
- Learn how to build iOS applications with Swift and SwiftUI and publish them to Apples' App Store.
- Includes 7 Courses
- With Certificate
- Beginner Friendly.13 hours
- A powerful programming language developed by Apple for iOS, macOS, and more.
- Beginner Friendly.12 hours