init(_:)
_TinyArray.swift:82init(_ elements: some Sequence) throws init(_ elements: some Sequence) throws s21_CertificateInternals10_TinyArrayVyACyxGqd__KcSTRd__s5ErrorRd_0_s6ResultOyxqd_0_G7ElementRtd__r0_lufc What are these?C1TWimport _CertificateInternalsstruct _TinyArray<Element>_TinyArray is a RandomAccessCollection optimised to store zero or one Element. It supports arbitrary many elements but if only up to one Element is stored it does not allocate separate storage on the heap and instead stores the Element inline.
protocol Sequence<Element>A type that provides sequential, iterated access to its elements.
init() init(_ elements: some Sequence<Element>) init(arrayLiteral elements: Element...) var endIndex: Int { get }var startIndex: Int { get }subscript(position: Int) -> Element { get set } mutating func append(_ newElement: Element) mutating func append(contentsOf newElements: some Sequence<Element>) @discardableResult mutating func remove(at index: Int) -> Element mutating func removeAll(where shouldBeRemoved: (Element) throws -> Bool) rethrows mutating func sort(by areInIncreasingOrder: (Element, Element) throws -> Bool) rethrows typealias Element = Elementtypealias Index = Int