static LPair> mruCachesWithStats() { ret mruCachesWithStats(mc()); } static LPair> mruCachesWithStats(O mc) { new LPair> out; for (Pair p : allMapCacheVars(mc)) { Int max = maxSizeOfMRUCache(p.b); if (max != null) out.add(pair(p.a, pair(l(p.b), max))); } ret out; }