public function Feed::valid in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/Writer/Feed.php \Zend\Feed\Writer\Feed::valid()
Check to see if the iterator is still valid
Return value
bool
File
- vendor/
zendframework/ zend-feed/ src/ Writer/ Feed.php, line 211
Class
Namespace
Zend\Feed\WriterCode
public function valid() {
return 0 <= $this->entriesKey && $this->entriesKey < $this
->count();
}