Function isUpper [src]

Returns whether the character is an uppercase letter.

Prototype

pub fn isUpper(c: u8) bool

Parameters

c: u8

Source

pub fn isUpper(c: u8) bool { return switch (c) { 'A'...'Z' => true, else => false, }; }