kencode/com.eignex.kencode/CharAlphabet CharAlphabet class CharAlphabet(chars: String) : Alphabet(source)Alphabet backed by an explicit string of characters. Members Constructors CharAlphabet Link copied to clipboard constructor(chars: String) Properties size Link copied to clipboard open override val size: IntNumber of characters in the alphabet. Functions get Link copied to clipboard open operator override fun get(index: Int): CharReturns the character at index in the alphabet. indexOf Link copied to clipboard open override fun indexOf(c: Char): IntReturns the index of c in the alphabet, or -1 if c is not present. CharAlphabet constructor(chars: String)(source) get open operator override fun get(index: Int): Char(source)Returns the character at index in the alphabet. indexOf open override fun indexOf(c: Char): Int(source)Returns the index of c in the alphabet, or -1 if c is not present. size open override val size: Int(source)Number of characters in the alphabet.