| 55 | |
| 56 | template <typename Fn> |
| 57 | tree_node::Forest<complex::Ids> TraformToIdsForest(tree_node::Forest<HierarchyEntry> const & forest, Fn && fn) |
| 58 | { |
| 59 | tree_node::Forest<complex::Ids> res; |
| 60 | forest.ForEachTree([&](auto const & tree) { res.Append(tree_node::TransformToTree(tree, std::forward<Fn>(fn))); }); |
| 61 | return res; |
| 62 | } |
| 63 | } // namespace generator |
nothing calls this directly
no test coverage detected