There was an error while loading. Please reload this page.
void is pseudo-type that represents the absence of a type.
void
Must often, it's used as the return type of functions/methods that don't return a value.
func doThings() void { doTask1() doTask2() doTask3() }
*void
*void is an alias for ptr.
ptr
Table of Contents