static LiveValue dm_liveValue(DynModule module, Class type, F0 calc) {
ret dm_calculatedLiveValue(module, type, calc);
}
static LiveValue dm_liveValue(Class type, F0 calc) {
ret dm_calculatedLiveValue(type, calc);
}
static LiveValue dm_liveValue(Class type, IF0 calc) {
ret dm_calculatedLiveValue(type, calc);
}
static LiveValue dm_liveValue(IF0> calc) {
ret dm_calculatedLiveValue(calc);
}