Finally I had a real use for Swift's borrowing, Span, yield.
And much to my shame, the next CPU reduction use (no throughput yet, still investigating) comes from replacing a copy in a loop array with a nasty memmove.
Also, avoid CPU burning ARC traffic with this one trick:
if a != nil {
a = nil
}