mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
fc6656e0ac
Closes GH-7242
398 lines
8.9 KiB
PHP
398 lines
8.9 KiB
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
class EmptyIterator implements Iterator
|
|
{
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return mixed */
|
|
public function key() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
}
|
|
|
|
class CallbackFilterIterator extends FilterIterator
|
|
{
|
|
public function __construct(Iterator $iterator, callable $callback) {}
|
|
|
|
/** @return bool */
|
|
public function accept() {}
|
|
}
|
|
|
|
class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements RecursiveIterator
|
|
{
|
|
public function __construct(RecursiveIterator $iterator, callable $callback) {}
|
|
|
|
/**
|
|
* @return bool
|
|
* @implementation-alias RecursiveFilterIterator::hasChildren
|
|
*/
|
|
public function hasChildren() {}
|
|
|
|
/** @return RecursiveCallbackFilterIterator */
|
|
public function getChildren() {}
|
|
}
|
|
|
|
interface RecursiveIterator extends Iterator
|
|
{
|
|
/** @return bool */
|
|
public function hasChildren();
|
|
|
|
/** @return RecursiveIterator|null */
|
|
public function getChildren();
|
|
}
|
|
|
|
class RecursiveIteratorIterator implements OuterIterator
|
|
{
|
|
public function __construct(Traversable $iterator, int $mode = RecursiveIteratorIterator::LEAVES_ONLY, int $flags = 0) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return mixed */
|
|
public function key() {}
|
|
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return int */
|
|
public function getDepth() {}
|
|
|
|
/** @return RecursiveIterator|null */
|
|
public function getSubIterator(?int $level = null) {}
|
|
|
|
/** @return RecursiveIterator */
|
|
public function getInnerIterator() {}
|
|
|
|
/** @return void */
|
|
public function beginIteration() {}
|
|
|
|
/** @return void */
|
|
public function endIteration() {}
|
|
|
|
/** @return bool|null */
|
|
public function callHasChildren() {}
|
|
|
|
/** @return RecursiveIterator|null */
|
|
public function callGetChildren() {}
|
|
|
|
/** @return void */
|
|
public function beginChildren() {}
|
|
|
|
/** @return void */
|
|
public function endChildren() {}
|
|
|
|
/** @return void */
|
|
public function nextElement() {}
|
|
|
|
/** @return void */
|
|
public function setMaxDepth(int $maxDepth = -1) {}
|
|
|
|
/** @return int|false */
|
|
public function getMaxDepth() {}
|
|
}
|
|
|
|
interface OuterIterator extends Iterator
|
|
{
|
|
/** @return Iterator|null */
|
|
public function getInnerIterator();
|
|
}
|
|
|
|
class IteratorIterator implements OuterIterator
|
|
{
|
|
public function __construct(Traversable $iterator, ?string $class = null) {}
|
|
|
|
/** @return Iterator|null */
|
|
public function getInnerIterator() {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return mixed */
|
|
public function key() {}
|
|
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
}
|
|
|
|
abstract class FilterIterator extends IteratorIterator
|
|
{
|
|
/** @return bool */
|
|
abstract public function accept();
|
|
|
|
public function __construct(Iterator $iterator) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
}
|
|
|
|
abstract class RecursiveFilterIterator extends FilterIterator implements RecursiveIterator
|
|
{
|
|
public function __construct(RecursiveIterator $iterator) {}
|
|
|
|
/** @return bool */
|
|
public function hasChildren() {}
|
|
|
|
/** @return RecursiveFilterIterator|null */
|
|
public function getChildren() {}
|
|
}
|
|
|
|
class ParentIterator extends RecursiveFilterIterator
|
|
{
|
|
public function __construct(RecursiveIterator $iterator) {}
|
|
|
|
/**
|
|
* @return bool
|
|
* @implementation-alias RecursiveFilterIterator::hasChildren
|
|
*/
|
|
public function accept() {}
|
|
}
|
|
|
|
interface SeekableIterator extends Iterator
|
|
{
|
|
/** @return void */
|
|
public function seek(int $offset);
|
|
}
|
|
|
|
class LimitIterator extends IteratorIterator
|
|
{
|
|
public function __construct(Iterator $iterator, int $offset = 0, int $limit = -1) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return int */
|
|
public function seek(int $offset) {}
|
|
|
|
/** @return int */
|
|
public function getPosition() {}
|
|
}
|
|
|
|
class CachingIterator extends IteratorIterator implements ArrayAccess, Countable
|
|
{
|
|
public function __construct(Iterator $iterator, int $flags = CachingIterator::CALL_TOSTRING) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return bool */
|
|
public function hasNext() {}
|
|
|
|
public function __toString(): string {}
|
|
|
|
/** @return int */
|
|
public function getFlags() {}
|
|
|
|
/** @return void */
|
|
public function setFlags(int $flags) {}
|
|
|
|
/**
|
|
* @param string $key
|
|
* @return mixed
|
|
*/
|
|
public function offsetGet($key) {}
|
|
|
|
/**
|
|
* @param string $key
|
|
* @return void
|
|
*/
|
|
public function offsetSet($key, mixed $value) {}
|
|
|
|
/**
|
|
* @param string $key
|
|
* @return void
|
|
*/
|
|
public function offsetUnset($key) {}
|
|
|
|
/**
|
|
* @param string $key
|
|
* @return bool
|
|
*/
|
|
public function offsetExists($key) {}
|
|
|
|
/** @return array */
|
|
public function getCache() {}
|
|
|
|
/** @return int */
|
|
public function count() {}
|
|
}
|
|
|
|
class RecursiveCachingIterator extends CachingIterator implements RecursiveIterator
|
|
{
|
|
public function __construct(Iterator $iterator, int $flags = RecursiveCachingIterator::CALL_TOSTRING) {}
|
|
|
|
/** @return bool */
|
|
public function hasChildren() {}
|
|
|
|
/** @return RecursiveCachingIterator|null */
|
|
public function getChildren() {}
|
|
}
|
|
|
|
class NoRewindIterator extends IteratorIterator
|
|
{
|
|
public function __construct(Iterator $iterator) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return mixed */
|
|
public function key() {}
|
|
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
}
|
|
|
|
class AppendIterator extends IteratorIterator
|
|
{
|
|
public function __construct() {}
|
|
|
|
/** @return void */
|
|
public function append(Iterator $iterator) {}
|
|
|
|
/** @return void */
|
|
public function rewind() {}
|
|
|
|
/** @return bool */
|
|
public function valid() {}
|
|
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
|
|
/** @return int|null */
|
|
public function getIteratorIndex() {}
|
|
|
|
/** @return ArrayIterator */
|
|
public function getArrayIterator() {}
|
|
}
|
|
|
|
class InfiniteIterator extends IteratorIterator
|
|
{
|
|
public function __construct(Iterator $iterator) {}
|
|
|
|
/** @return void */
|
|
public function next() {}
|
|
}
|
|
|
|
class RegexIterator extends FilterIterator
|
|
{
|
|
public function __construct(Iterator $iterator, string $pattern, int $mode = RegexIterator::MATCH, int $flags = 0, int $pregFlags = 0) {}
|
|
|
|
/** @return bool */
|
|
public function accept() {}
|
|
|
|
/** @return int */
|
|
public function getMode() {}
|
|
|
|
/** @return void */
|
|
public function setMode(int $mode) {}
|
|
|
|
/** @return int */
|
|
public function getFlags() {}
|
|
|
|
/** @return void */
|
|
public function setFlags(int $flags) {}
|
|
|
|
/** @return string */
|
|
public function getRegex() {}
|
|
|
|
/** @return int */
|
|
public function getPregFlags() {}
|
|
|
|
/** @return void */
|
|
public function setPregFlags(int $pregFlags) {}
|
|
}
|
|
|
|
class RecursiveRegexIterator extends RegexIterator implements RecursiveIterator
|
|
{
|
|
public function __construct(RecursiveIterator $iterator, string $pattern, int $mode = RecursiveRegexIterator::MATCH, int $flags = 0, int $pregFlags = 0) {}
|
|
|
|
/** @return bool */
|
|
public function accept() {}
|
|
|
|
/**
|
|
* @return bool
|
|
* @implementation-alias RecursiveFilterIterator::hasChildren
|
|
*/
|
|
public function hasChildren() {}
|
|
|
|
/** @return RecursiveRegexIterator */
|
|
public function getChildren() {}
|
|
}
|
|
|
|
class RecursiveTreeIterator extends RecursiveIteratorIterator
|
|
{
|
|
/** @param RecursiveIterator|IteratorAggregate $iterator */
|
|
public function __construct(
|
|
$iterator,
|
|
int $flags = RecursiveTreeIterator::BYPASS_KEY,
|
|
int $cachingIteratorFlags = CachingIterator::CATCH_GET_CHILD,
|
|
int $mode = RecursiveTreeIterator::SELF_FIRST
|
|
) {}
|
|
|
|
/** @return mixed */
|
|
public function key() {}
|
|
|
|
/** @return mixed */
|
|
public function current() {}
|
|
|
|
/** @return string */
|
|
public function getPrefix() {}
|
|
|
|
/** @return void */
|
|
public function setPostfix(string $postfix) {}
|
|
|
|
/** @return void */
|
|
public function setPrefixPart(int $part, string $value) {}
|
|
|
|
/** @return string */
|
|
public function getEntry() {}
|
|
|
|
/** @return string */
|
|
public function getPostfix() {}
|
|
}
|