1#ifndef GENERATOR_TRANSFORMPATH_HPP
2#define GENERATOR_TRANSFORMPATH_HPP
13template<
typename path_t>
17 using impl_t = path_t;
26 auto vertex = vertices_.generate();
27 path_->mutate_(vertex);
33 return vertices_.done();
56 : path_{
std::move(path)}
77template<
typename path_t>
transform_path_t< path_t > transform_path(path_t path, const std::function< void(path_vertex_t &)> &mutate)