_byte_storage

func _byte_storage(capacity: Int) 'alloc -> ByteStorage

Allocates byte storage with the requested capacity.

View Source
pub func _byte_storage(capacity: Int) 'alloc -> ByteStorage {
	ByteStorage(base: _alloc<Byte>(count: capacity))
}