For the complete Mojo documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /docs/manual/basics.md).
memset
memset(ptr: UnsafePointer[address_space=ptr.address_space], value: UInt8, count: Int)
Fills memory with the given value.
Args:
- ptr (
UnsafePointer[address_space=ptr.address_space]): UnsafePointer to the beginning of the memory block to fill. - value (
UInt8): The value to fill with. - count (
Int): Number of elements to fill (in elements, not bytes).