libtmux Reference MCP Search
On this page

RegexPattern.Options.isDisjoint(with:)

View as Markdown

Module
RegexPattern
Declared in
Options
Package
libtmux-swift
isDisjoint(with:) ( with : Self ) Bool
method [source]
method [source]
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 employees set is disjoint with the visitors set 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: true if the set has no elements in common with other; otherwise, false.

0 declared, 0 inherited

Esc

Type to search.