char

char: isAlpha, isDigit, isWhitespace, compare, print, hash

struct char: Copyable, Comparable, Printable, Hashable

A single character.

isAlpha

bool isAlpha()

Returns true if this is a letter.

isDigit

bool isDigit()

Returns true if this is a digit.

isWhitespace

bool isWhitespace()

Returns true if this is whitespace.

compare

Ordering compare(char& other)

Compares this value to another.

print

void print(OutputStream& stream)

Writes this value to the given stream.

hash

uint64 hash()

Returns the hash of this value.