valueAt method

T? valueAt(
  1. Dot dot
)

The value of element dot (live or tombstoned), or null if absent.

Implementation

T? valueAt(Dot dot) {
  final loc = _locate(dot);
  return loc == null ? null : loc.$1.values[loc.$2];
}