Closed oscbyspro closed 1 year ago
I'll port uninitialized(_:) from Numberick, because adding it makes porting other things easier. It's fromUnsafeMutableWords(_:), but safer (plus some performance caveats).
uninitialized(_:)
fromUnsafeMutableWords(_:)
@inlinable public static func uninitialized(_ body: (inout Self) -> Void) -> Self { }
A solution without closure would be better, but those have not performed well.
I'll port
uninitialized(_:)
from Numberick, because adding it makes porting other things easier. It'sfromUnsafeMutableWords(_:)
, but safer (plus some performance caveats).