summaryrefslogtreecommitdiff
path: root/ext/intl/breakiterator/codepointiterator_internal.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Simplify namespace accessAnatol Belski2018-04-011-3/+3
| | | | The icu namespace is an alias which resolves to the real namespace.
* Utilize the recommended way to handle the icu namespaceAnatol Belski2018-03-311-0/+3
|
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* Remove compilation warnings: "warning: no newline at end of file"Christopher Jones2013-08-201-1/+1
|
* Added IntlCodePointBreakIterator.Gustavo André dos Santos Lopes2012-06-221-0/+98
Objects of this class can be instantiated with IntlBreakIterator::createCodePointInstance() The method does not take a locale, as it would not make sense in this context. This class has one additional method: long IntlCodePointIterator::getLastCodePoint() which returns either -1 or the last code point we moved over, if any (and discounting any movement before the last call to IntlBreakIterator::first() or IntlBreakIterator::last()).