Home | History | Annotate | Download | only in core

Lines Matching full:foreach

39     // set(), find() and foreach() all allow mutable access to table entries.
46 // The pointers you receive in foreach() are only valid for its duration.
97 void foreach(Fn&& fn) {
107 void foreach(Fn&& fn) const {
229 void foreach(Fn&& fn) {
230 fTable.foreach([&fn](Pair* p){ fn(p->key, &p->val); });
235 void foreach(Fn&& fn) const {
236 fTable.foreach([&fn](const Pair& p){ fn(p.key, p.val); });
280 void foreach (Fn&& fn) const {
281 fTable.foreach(fn);