Warning: session_start(): open(/var/lib/php/sessions/sess_9bioh0k6lekt9jog7cv52rirq5, 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 LiveValue dm_calculatedLiveValue(final DynModule module, final Class type, final F0 calc) {
lock module.lock;
final SimpleLiveValue value = new(type, callF(calc));
module.onChange(r { value.set(callF(calc)) });
ret value;
}
static LiveValue dm_calculatedLiveValue(Class type, F0 calc) {
ret dm_calculatedLiveValue(dm_current_mandatory(), type, calc);
}
static LiveValue dm_calculatedLiveValue(Class type default O, IF0 calc) {
ret dm_calculatedLiveValue(type, if0ToF0(calc));
}