On this page
RegexPattern.Options
- Declared in
- RegexPattern
- Package
- libtmux-swift
- Source
- Sources/LibTmux/RegexPattern.swift
- Bases:
Matching options encoded with the pattern.
29 declared, 0 inherited
Members
- !=(_:_:) function Returns a Boolean value indicating whether two values are not equal.
- contains(_:) method Returns a Boolean value that indicates whether a given element is a member of the option set.
- encode(to:) method Encodes this value into the given encoder, when the type's
RawValueisUInt8. - formIntersection(_:) method Removes all elements of this option set that are not also present in the given set.
- formSymmetricDifference(_:) method Replaces this set with a new set containing all elements contained in either this set or the given set, but not in both.
- formUnion(_:) method Inserts the elements of another set into this option set.
- hash(into:) method
- init(_:) method Creates a new set from a finite sequence of items.
- init() method Creates an empty option set.
- init(arrayLiteral:) method Creates a set containing the elements of the given array literal.
- init(from:) method Creates a new instance by decoding from the given decoder, when the type's
RawValueisUInt8. - init(rawValue:) method Creates a new option set from the given raw value.
- insert(_:) method Adds the given element to the option set if it is not already a member.
- intersection(_:) method Returns a new option set with only the elements contained in both this set and the given set.
- isDisjoint(with:) method Returns a Boolean value that indicates whether the set has no members in common with the given set.
- isStrictSubset(of:) method Returns a Boolean value that indicates whether this set is a strict subset of the given set.
- isStrictSuperset(of:) method Returns a Boolean value that indicates whether this set is a strict superset of the given set.
- isSubset(of:) method Returns a Boolean value that indicates whether the set is a subset of another set.
- isSuperset(of:) method Returns a Boolean value that indicates whether the set is a superset of the given set.
- remove(_:) method Removes the given element and all elements subsumed by it.
- subtract(_:) method Removes the elements of the given set from this set.
- subtracting(_:) method Returns a new set containing the elements of this set that do not occur in the given set.
- symmetricDifference(_:) method Returns a new option set with the elements contained in this set or in the given set, but not in both.
- union(_:) method Returns a new option set of the elements contained in this set, in the given set, or in both.
- update(with:) method Inserts the given element into the set.
- caseInsensitive property Compares literals and ranges without case distinctions.
- hashValue property
- isEmpty property A Boolean value that indicates whether the set has no elements.
- rawValue property The corresponding value of the raw type.