A range that spans each $(CODEPOINT) in this set.
import std.algorithm.comparison : equal; import std.range : iota; auto set = unicode.ASCII; set.byCodepoint.equal(iota(0, 0x80));
See Implementation
A range that spans each $(CODEPOINT) in this set.