1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
<?php
/** @generate-class-entries */
/** @not-serializable */
class IntlPartsIterator extends IntlIterator
{
/** @cvalue PARTS_ITERATOR_KEY_SEQUENTIAL */
public const int KEY_SEQUENTIAL = UNKNOWN;
/** @cvalue PARTS_ITERATOR_KEY_LEFT */
public const int KEY_LEFT = UNKNOWN;
/** @cvalue PARTS_ITERATOR_KEY_RIGHT */
public const int KEY_RIGHT = UNKNOWN;
/** @tentative-return-type */
public function getBreakIterator(): IntlBreakIterator {}
/** @tentative-return-type */
public function getRuleStatus(): int {}
}
|