13 lines
218 B
Python
13 lines
218 B
Python
from typing import FrozenSet, Optional, Tuple
|
|
|
|
def all_words() -> Tuple[str, ...]:
|
|
pass
|
|
|
|
|
|
def codepoints_for_word(word: str) -> FrozenSet[int]:
|
|
pass
|
|
|
|
|
|
def name_for_codepoint(cp: int) -> Optional[str]:
|
|
pass
|