// // Aggregate.swift // Todos // // Created by Sam Jaffe on 3/5/26. // import Foundation protocol Aggregate { associatedtype Element func move(fromOffsets: IndexSet, toOffset: Int) func remove(_ item: Element) func reindex() }