is_upper
Checks if a string is in uppercase.
is_upper(x:string) -> bool
Description
Section titled “Description”The is_upper
function returns true
if x
is entirely in uppercase; otherwise, it returns false
.
Examples
Section titled “Examples”Check if a string is uppercase
Section titled “Check if a string is uppercase”from {x: "HELLO".is_upper()}
{x: true}