a<T, R> static method

Iterable<R> a<T, R>(
  1. T t,
  2. List<$At> a
)

Implementation

static Iterable<R> a<T, R>(T t, List<$At> a) =>
    a.where((i) => i.data == t).map((i) => i.value);