OpenTTD Source
20241108-master-g80f628063a
|
Some simple functions to help with accessing containers. More...
Go to the source code of this file.
Functions | |
template<typename Container > | |
bool | include (Container &container, typename Container::const_reference &item) |
Helper function to append an item to a container if it is not already contained. More... | |
template<typename Container > | |
int | find_index (Container const &container, typename Container::const_reference item) |
Helper function to get the index of an item Consider using std::set, std::unordered_set or std::flat_set in new code. More... | |
Some simple functions to help with accessing containers.
Definition in file container_func.hpp.
int find_index | ( | Container const & | container, |
typename Container::const_reference | item | ||
) |
Helper function to get the index of an item Consider using std::set, std::unordered_set or std::flat_set in new code.
container | A reference to the container to be searched. |
item | Reference to the item to be search for |
Definition at line 41 of file container_func.hpp.
Referenced by NetworkContentListWindow::FilterContentList(), GetReverseRailTypeTranslation(), and NetworkContentListWindow::SortContentList().
|
inline |
Helper function to append an item to a container if it is not already contained.
The container must have a emplace_back
function. Consider using std::set, std::unordered_set or std::flat_set in new code.
container | A reference to the container to be extended |
item | Reference to the item to be copy-constructed if not found |
Definition at line 24 of file container_func.hpp.
Referenced by AddAnimatedTile(), ClientNetworkContentSocketHandler::AddCallback(), ScenarioScanner::AddFile(), RefitWindow::BuildRefitList(), CheckSubsidised(), DeliverGoodsToIndustry(), GetBestFittingSubType(), GetVehicleSet(), ClientNetworkContentSocketHandler::ReverseLookupTreeDependency(), UpdateRoadVehPowerProc(), and UpdateTrainPowerProc().