boost::gil::histogram::operator=

%Unordered_map list assignment operator.

Synopsis

Declared in <boost/gil/histogram.hpp>

unordered_map&
operator=(initializer_list<value_type> __l);

Description

This function fills an %unordered_map with copies of the elements in the initializer list __l.

Note that the assignment completely changes the %unordered_map and that the resulting %unordered_map's size is the same as the number of elements assigned.

Return Value

A standard container composed of unique keys (containing at most one of each key value) that associates values of another type with the keys.

Parameters

Name

Description

__l

An initializer_list.

Created with MrDocs