DoxigAlpha

isAggregate

Function parameters

Parameters

#
builder:*const Builder

Type definitions in this namespace

Types

#

Functions in this namespace

Functions

#

= 16

Values

#

Source

Implementation

#
pub fn isAggregate(self: Type, builder: *const Builder) bool {
    return switch (self.tag(builder)) {
        .small_array, .array, .structure, .packed_structure, .named_structure => true,
        else => false,
    };
}