kencode/com.eignex.kencode/Alphabet Alphabet interface Alphabet(source)Maps indices to characters (encoding) and characters back to indices (decoding). indexOf returns -1 for characters not in the alphabet.InheritorsCharAlphabetUnicodeRangeAlphabet Members Properties size Link copied to clipboard abstract val size: IntNumber of characters in the alphabet. Functions get Link copied to clipboard abstract operator fun get(index: Int): CharReturns the character at index in the alphabet. indexOf Link copied to clipboard abstract fun indexOf(c: Char): IntReturns the index of c in the alphabet, or -1 if c is not present. get abstract operator fun get(index: Int): Char(source)Returns the character at index in the alphabet. indexOf abstract fun indexOf(c: Char): Int(source)Returns the index of c in the alphabet, or -1 if c is not present. size abstract val size: Int(source)Number of characters in the alphabet.