keys property

Iterable<List<int>> keys

An iterable over the keys of this layout.

Implementation

Iterable<List<int>> get keys => rank == 0
    ? length == 0
        ? const <List<int>>[]
        : const <List<int>>[[]]
    : KeyIterable(this);