MCPcopy Create free account
hub / github.com/lief-project/LIEF / RValueReference>

Method RValueReference>

api/python/src/DWARF/types/pyRValueRef.cpp:7–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5namespace LIEF::dwarf::py {
6template<>
7void create<dw::types::RValueReference>(nb::module_& m) {
8 nb::class_<dw::types::RValueReference, dw::Type> type(m, "RValueReference",
9 R"doc(
10 This class represents the ``DW_TAG_rvalue_reference_type`` type
11 )doc"_doc
12 );
13
14 type
15 .def_prop_ro("underlying_type", &dw::types::RValueReference::underlying_type,
16 R"doc(
17 The underlying type referenced by this rvalue-type.
18 )doc"_doc
19 )
20
21 ;
22}
23
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected