getComputedValue method

T getComputedValue(
  1. LxReactive computed
)

Extracts the current value from the computed instance.

Implementation

T getComputedValue(LxReactive computed) {
  return (computed as LxComputed<T>).value;
}