func _store<Element>(ptr: RawPtr, consume value: Element) 'alloc -> VoidMoves value into the Element slot at ptr without dropping prior contents.
The slot must be uninitialized or its previous value must already have been moved out. ptr must be live, aligned, and valid for the complete layout.
View Source
pub func _store<Element>(ptr: RawPtr, consume value: Element) 'alloc -> Void {
#_ir(value, ptr) { store Element $0 $1 }
}