J
Size: a a a
SG
LR
val sortedList = list.sortedWith(
compareByDescending<Item> { it.date }
.thenBy { it.name }
)
LR
Item- имя класса в list
VR
J
LR
J
LR
LR
J
LR
J
LR
J
LR
J
DT
public interface ViewComponent<V> {
void inject(V view);
}
public interface ViewComponentBuilder<C extends ViewComponent, M extends ViewModule> {
C buildComponent();
ViewComponentBuilder<C,M> moduleProduce(M module);
}
V