data class SymbolSet
A SymbolSet
represents a named collection of symbols.
name
- the name of the symbol set
symbols
- the symbols in the symbol set
SymbolSet(name: String, symbols: String)
A |
var name: String
the name of the symbol set |
|
var symbols: String
the symbols in the symbol set |
fun toString(): String
Returns the |
val ALPHABET: SymbolSet
The lowercase English alphabet. |
|
val BRACKETS: SymbolSet
A collection of brackets and parentheses. |
|
val defaultSymbolSets: List<SymbolSet>
List of default symbol sets. |
|
val DIGITS: SymbolSet
The digits 0 through 9. |
|
val HEXADECIMAL: SymbolSet
The hexadecimal digits 0 through f. |
|
val MINUS: SymbolSet
A minus ( |
|
val SPACE: SymbolSet
A whitespace ( |
|
val SPECIAL: SymbolSet
A collection of special characters. |
|
val UNDERSCORE: SymbolSet
An underscore ( |