Warning: session_start(): open(/var/lib/php/sessions/sess_e5m765d8ktmcusrfbbrasusu7v, 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 noeq record mapMethodLike FunctionCall(O function, O... args) implements Transformable {
toString {
ret function + "(" + joinWithComma(allToString(args)) + ")";
}
public bool equals(O o) {
ret o instanceof FunctionCall
&& eq(function, o/FunctionCall.function)
&& objectArraysEqual(args, o/FunctionCall.args);
}
public int hashCode() {
ret hashAboutObjects(function, asList(args));
}
L args() { ret asList(args); }
public Object transformUsing(IF1 f) {
ret new FunctionCall(f.get(function), mapObjectArray(f, args));
}
}