Config

public struct Config: OptionSet

Settings used to configure the match behavior

  • match characters of same case

    Declaration

    Swift

    public static let matchCase                 = Config(type: 0)
  • enables anchors to match boundaries on each line

    Declaration

    Swift

    public static let anchorsMatchLines         = Config(type: 1)
  • ‘any’ element incudes line characters

    Declaration

    Swift

    public static let anyIncudesLineChars       = Config(type: 2)
  • use unicode word boundries instead of ASCII

    Declaration

    Swift

    public static let unicodeWordBoundries      = Config(type: 3)
  • Declaration

    Swift

    public let rawValue: Int
  • Declaration

    Swift

    public init(rawValue: Int)