var items= BehaviorRelay(value: [SectionModel<String, [Entry]>(model: "", items: [])])
let groupedEntries = Dictionary(grouping: newValue){$0.title?.first}.map {
return SectionModel(model: "\(String(describing: $0.key))", items: $0.value)
}
self.items.accept(groupedEntries)
Получаю
Cannot convert value of type '[SectionModel<String, Entry>]' to expected argument type '[SectionModel<String, [Entry]>]'
$0.value массив, я проверил в дебагге
Как объяснить это Xcode?