Closed dnadoba closed 1 year ago
We want reduce allocations in swift-certificates and need a way to parse without allocating an intermediate Array.
Array
add DER.lazySet(of:identifier:rootNode) which returns its result without allocating.
DER.lazySet(of:identifier:rootNode)
We can eliminate allocations during parsing
Motiviation
We want reduce allocations in swift-certificates and need a way to parse without allocating an intermediate
Array
.Modifications
add
DER.lazySet(of:identifier:rootNode)
which returns its result without allocating.Result
We can eliminate allocations during parsing