Go to the source code of this file.
Functions | |
template<typename FPred1 , typename FPred2 > | |
void | get_tiles_radius (std::set< map_location > &&locs, size_t radius, std::set< map_location > &result, const FPred1 &pred1, const FPred2 &pred2) |
Function that will add to result all elements of locs, plus all on-board (that is: all locs that match pred1) locations matching pred2 that are connected to elements of locs by a chain of at most radius tiles, each of which matches pred2. More... | |
void get_tiles_radius | ( | std::set< map_location > && | locs, |
size_t | radius, | ||
std::set< map_location > & | result, | ||
const FPred1 & | pred1, | ||
const FPred2 & | pred2 | ||
) |
Function that will add to result all elements of locs, plus all on-board (that is: all locs that match pred1) locations matching pred2 that are connected to elements of locs by a chain of at most radius tiles, each of which matches pred2.
result must be a std::set of locations.
pred1 a fast predicate (used before cachecheck). pred2 a slow predicate (used after cachecheck).
Definition at line 31 of file pathutils_impl.hpp.
References get_adjacent_tiles().