withInterface<T> static method

Iterable<ArtifactTypeMirror> withInterface<T>()

Implementation

static Iterable<ArtifactTypeMirror> withInterface<T>() sync* {
  for (MapEntry<Type, $AClass> entry in ArtifactAccessor.withInterface<T>()) {
    yield ArtifactTypeMirror(entry.value.classType, entry.value);
  }
}