structstd.builtin.Type.Fn.Param[src]

This data structure is used by the Zig language code generation and therefore must be kept in sync with the compiler implementation.

Fields

is_generic: bool
is_noalias: bool
type: ?type

Source Code

Source code
pub const Param = struct {
    is_generic: bool,
    is_noalias: bool,
    type: ?type,
}