### 代码
~~~
class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversable {
/* Methods */
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/intlbreakiterator.construct.php
* @param string $rules
* @param string $compiled [optional]
*/
#[Pure]
public function __construct($rules, $compiled = false) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for boundaries of combining character sequences
* @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
public static function createCharacterInstance($locale) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for boundaries of code points
* @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php
* @return IntlRuleBasedBreakIterator
*/
public static function createCodePointInstance() { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for logically possible line breaks
* @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php
* @param string $locale [optional]
* @return IntlRuleBasedBreakIterator
*/
public static function createLineInstance($locale) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for sentence breaks
* @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php
* @param string $locale [optional]
* @return IntlRuleBasedBreakIterator
*/
public static function createSentenceInstance($locale) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for title-casing breaks
* @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php
* @param string $locale [optional]
* @return IntlRuleBasedBreakIterator
*/
public static function createTitleInstance($locale) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Create break iterator for word breaks
* @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php
* @param string $locale [optional]
* @return IntlRuleBasedBreakIterator
*/
public static function createWordInstance($locale) { }
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php
* Get the binary form of compiled rules
* @return string
*/
#[Pure]
public function getBinaryRules() { }
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrules.php
* Get the rule set used to create this object
* @return string
*/
#[Pure]
public function getRules() { }
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php
* Get the largest status value from the break rules that determined the current break position
* @return int
*/
#[Pure]
public function getRuleStatus() { }
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php
* Get the status values from the break rules that determined the current break position
* @return array
*/
#[Pure]
public function getRuleStatusVec() { }
}
~~~
- 空白目录
- iterable接口
- 接口Traversable继承Iterator接口
- 类 RarArchive 继承Traversable接口
- 类SimpleXMLElement继承Traversable接口
- 类SimpleXMLIterator 继承SimpleXMLElement类
- 类IntlRuleBasedBreakIterator实现Traversable接口
- 类IntlCodePointBreakIterator实现Traversable接口
- 类DocResult 实现BaseResult和Traversable
- 类Result 实现\BaseResult和Traversable
- 类RowResult实现\BaseResult 和Traversable
- 类SqlStatementResult 实现BaseResult 和Traversable
- 接口IteratorAggregate 继承Traversable
- 类DOMNodeList 实现IteratorAggregate, Countable
- 类DOMNamedNodeMap 实现IteratorAggregate, Countable