Warning: session_start(): open(/var/lib/php/sessions/sess_p85f32vfug6qb1lt59q00078bu, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// f: func(key, value) -> entry
static L mapMapToList(Map map, O f) {
new L l;
if (map != null)
for (Map.Entry e : map.entrySet())
l.add(callF(f, e.getKey(), e.getValue()));
ret l;
}