Skip to content

FixedArgSig

Raymond Chen edited this page Apr 1, 2019 · 2 revisions

A xlang::meta::reader::FixedArgSig structure represents a single fixed argument in a custom attribute. See CustomAttributeSig for an example.

Namespace types

using value_type = std::variant<
    ElemSig,               // index 0
    std::vector<ElemSig>>; // index 1

The value of the FixedArgSig can be an ElemSig object (if the argument is a single value), or a vector or ElemSig objects (if the argument is an array).

Fields

value

value_type value;

The value of the fixed argument.

Clone this wiki locally