Interface CharRange

An immutable interval of Chars with inclusive ends.

Each interval contains all characters x with min <= x <= max.

Hierarchy

  • CharRange

Properties

Properties

max: Char

The inclusive maximum of the interval.

This value has to be greater or equal to min.

min: Char

The inclusive minimum of the interval.

This value has to be less or equal to max.