object-introspection/types/array_type.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
664 B
TOML
Raw Normal View History

2022-12-19 14:37:51 +00:00
[info]
type_name = "std::array"
2022-12-19 14:37:51 +00:00
ctype = "ARRAY_TYPE"
header = "array"
# Old:
numTemplateParams = 1
2022-12-19 14:37:51 +00:00
ns = ["namespace std"]
typeName = "std::array<"
2022-12-19 14:37:51 +00:00
[codegen]
decl = """
template<typename T, long unsigned int N>
void getSizeType(const %1%<T, N> &container, size_t& returnArg);
"""
func = """
template<typename T, long unsigned int N>
void getSizeType(const %1%<T,N> &container, size_t& returnArg)
{
SAVE_DATA((uintptr_t)container.size());
SAVE_SIZE(sizeof(container));
for (auto & it: container) {
// undo the static size that has already been added per-element
SAVE_SIZE(-sizeof(it));
getSizeType(it, returnArg);
}
}
"""