memset

Undocumented in source. Be warned that the author may not have intended to support it.
@nogc nothrow
void
memset
(
ubyte value
,
scope void* dest
,)

Examples

ubyte[5] dest;
memset(128, dest.ptr, 5);
// assert(dest == [128, 128, 128, 128, 128]);

Meta