RegexPattern.Options.isDisjoint(with:)
Swift
- Python Unavailable
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift
- Module
- RegexPattern
- Declared in
- Options
- Package
- libtmux-swift
- method ¶isDisjoint(with:)
-
Inherited from
SetAlgebra.isDisjoint(with:)Returns a Boolean value that indicates whether the set has no members in common with the given set.
In the following example, the
employeesset is disjoint with thevisitorsset because no name appears in both sets.let employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"] let visitors: Set = ["Marcia", "Nathaniel", "Olivia"] print(employees.isDisjoint(with: visitors)) // Prints "true"
- Parameter other: A set of the same type as the current set.
- Returns:
trueif the set has no elements in common withother; otherwise,false.
0 declared, 0 inherited