Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

createModule

This function creates a private module, to be used by the current package, but not exposed to other packages depending on this one. addModule can be used instead to create a public module.

Build.createModule
pub fn createModule(b: *Build, options: Module.CreateOptions) *Module

File

lib/std/Build.zig:873

Code

pub fn createModule(b: *Build, options: Module.CreateOptions) *Module {
    return Module.create(b, options);
}