MCPcopy Create free account
hub / github.com/ByConity/ByConity / getTypesIndexes

Function getTypesIndexes

src/DataTypes/transformTypesRecursively.cpp:11–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9{
10
11TypeIndexesSet getTypesIndexes(const DataTypes & types)
12{
13 TypeIndexesSet type_indexes;
14 for (const auto & type : types)
15 type_indexes.insert(type->getTypeId());
16 return type_indexes;
17}
18
19void transformTypesRecursively(DataTypes & types, std::function<void(DataTypes &, TypeIndexesSet &)> transform_simple_types, std::function<void(DataTypes &, TypeIndexesSet &)> transform_complex_types)
20{

Callers 1

Calls 2

insertMethod · 0.45
getTypeIdMethod · 0.45

Tested by

no test coverage detected