hydra.overlay.python.lib.chars module
Python implementations of hydra.overlay.python.lib.chars primitives.
- hydra.overlay.python.lib.chars.is_alpha_num(value: int) bool
Check whether a character is alphanumeric.
- hydra.overlay.python.lib.chars.is_lower(value: int) bool
Check whether a character is lowercase.
- hydra.overlay.python.lib.chars.is_space(value: int) bool
Check whether a character is a whitespace character.
- hydra.overlay.python.lib.chars.is_upper(value: int) bool
Check whether a character is uppercase.
- hydra.overlay.python.lib.chars.to_lower(value: int) int
Convert a character to lowercase.
- hydra.overlay.python.lib.chars.to_upper(value: int) int
Convert a character to uppercase.