is_lower
Checks if a string is in lowercase.
is_lower(x:string) -> bool
Description
The is_lower
function returns true
if x
is entirely in lowercase and
false
otherwise.
Examples
Check if a string is lowercase
from {x: "hello".is_lower()}
{x: true}
See Also
to_lower
, is_upper