Warning: session_start(): open(/var/lib/php/sessions/sess_j98qsg2gt4jhpk1mefqkru5851, 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
static boolean matchAny(Collection patterns, S s, Matches m) {
for (S pattern : patterns)
if (match(pattern, s, m))
ret true;
ret false;
}
static boolean matchAny(Collection patterns, S s) {
ret matchAny(patterns, s, null);
}
// 2nd version
sbool matchAny(S pat, Iterable l) {
ret matchAny(pat, l, null);
}
sbool matchAny(S pat, Iterable l, Matches m) {
if (l != null)
for (S s : l)
if (match(pat, s, m))
true;
false;
}