Go to the source code of this file.
Namespaces | |
| namespace | zypp |
Defines | |
| #define | for_(IT, BEG, END) for ( typeof(BEG) IT = BEG; IT != END; ++IT ) |
| Convenient for-loops using iterator. | |
Definition in file Easy.h.
| #define for_ | ( | IT, | |||
| BEG, | |||||
| END | ) | for ( typeof(BEG) IT = BEG; IT != END; ++IT ) |
Convenient for-loops using iterator.
std::set<std::string> _store; for_( it, _store.begin(), _store.end() ) { cout << *it << endl; }
Definition at line 24 of file Easy.h.
Referenced by zypp::addDu(), zypp::detail::PatchImplIf::all_atoms(), zypp::parser::susetags::PackagesDuFileReader::Impl::consumeDir(), zypp::delDu(), zypp::DiskUsageCounter::disk_usage(), zypp::repo::cached::PatternImpl::initUiCapSetFromAttr(), zypp::pool::PoolImpl::knownRepositories(), and zypp::target::rpm::RpmHeader::tag_du().
1.5.3