Function isLower [src]

Returns whether the character is a lowercase letter.

Prototype

pub fn isLower(c: u8) bool

Parameters

c: u8

Source

pub fn isLower(c: u8) bool { return switch (c) { 'a'...'z' => true, else => false, }; }