boost::gil::histogram::erase
Erases a [__first,__last) range of elements from an] %unordered_map.
Synopsis
Declared in <boost/gil/histogram.hpp>
iterator
erase(
const_iterator __first,
const_iterator __last);
Description
This function erases a sequence of elements from an %unordered_map. Note that this function only erases the elements, and that if the element is itself a pointer, the pointed‐to memory is not touched in any way. Managing the pointer is the user's responsibility.
Parameters
Name |
Description |
__first |
Iterator pointing to the start of the range to be erased. |
__last |
Iterator pointing to the end of the range to be erased. |
Created with MrDocs