This commit is contained in:
jzmaddock
2013-12-14 17:42:13 +00:00
parent 7c7f38b009
commit e5bbcac3da
102 changed files with 214 additions and 187 deletions

View File

@ -63,7 +63,7 @@ A Bidirectional iterator adapter that makes an underlying sequence of UTF16 char
The three-arg constructor of this class takes the start and end of the underlying sequence
as well as the position to start iteration from. This constructor validates that the
underlying sequence has validly encoded endpoints: this prevents accidently incrementing/decrementing
underlying sequence has validly encoded endpoints: this prevents accidentally incrementing/decrementing
past the end of the underlying sequence as a result of invalid UTF16 code sequences at the endpoints
of the underlying range.
@ -94,7 +94,7 @@ look like a (read-only) sequence of UTF32 characters.
The three-arg constructor of this class takes the start and end of the underlying sequence
as well as the position to start iteration from. This constructor validates that the
underlying sequence has validly encoded endpoints: this prevents accidently incrementing/decrementing
underlying sequence has validly encoded endpoints: this prevents accidentally incrementing/decrementing
past the end of the underlying sequence as a result of invalid UTF8 code sequences at the endpoints
of the underlying range.