libcamera: utils: Add map_keys() function

Add a map_keys() function to the utils namespace to extract keys from a
map.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
[Niklas: change return type to std::vector instead of std::set]
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Laurent Pinchart
2020-06-25 04:23:35 +03:00
committed by Niklas Söderlund
parent b5f6a2ce2f
commit c58bec935c
3 changed files with 39 additions and 0 deletions

View File

@@ -127,6 +127,13 @@ std::string dirname(const std::string &path)
return path.substr(0, pos + 1);
}
/**
* \fn std::vector<typename T::key_type> map_keys(const T &map)
* \brief Retrieve the keys of a std::map<>
* \param[in] map The map whose keys to retrieve
* \return A std::vector<> containing the keys of \a map
*/
/**
* \fn libcamera::utils::set_overlap(InputIt1 first1, InputIt1 last1,
* InputIt2 first2, InputIt2 last2)