getValue method

T getValue(
  1. List<int> key
)

Returns the value at the given key (index-list).

Implementation

T getValue(List<int> key) => data[layout.toIndex(key)];