A fast, safe, and efficient CBOR serialization library for Swift on any platform. swiftpackageindex.com/thecoolwinter/CBOR/1.1.1/documentation/cbor
atproto swift cbor
at main 14 lines 278 B view raw
1// 2// Array+chunked.swift 3// CBOR 4// 5// Created by Khan Winter on 9/1/25. 6// 7 8extension Array { 9 func chunked(into size: Int) -> [[Element]] { 10 stride(from: 0, to: count, by: size).map { 11 Array(self[$0 ..< Swift.min($0 + size, count)]) 12 } 13 } 14}