On this page
RegexPattern.Options.rawValue
- Module
- RegexPattern
- Declared in
- Options
- Package
- libtmux-swift
- Source
- Sources/LibTmux/RegexPattern.swift
-
The corresponding value of the raw type.
A new instance initialized with
rawValuewill be equivalent to this instance. For example:enum PaperSize: String { case A4, A5, Letter, Legal }
let selectedSize = PaperSize.Letter print(selectedSize.rawValue) // Prints "Letter"
print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!) // Prints "true"
0 declared, 0 inherited