is_lower
Checks if a string is in lowercase.
is_lower(x:string) -> bool
Description
Section titled “Description”The is_lower
function returns true
if x
is entirely in lowercase and
false
otherwise.
Examples
Section titled “Examples”Check if a string is lowercase
Section titled “Check if a string is lowercase”from {x: "hello".is_lower()}
{x: true}