$value<T> function

$Value<T> $value<T>(
  1. T init()
)

Implementation

$Value<T> $value<T>(T init()) {
  return _cursors!.last.next<T>(init);
}