multiset::insert


template <class t,class less>
void multiset<t,less>::insert(const t& Element)

This method inserts an element into the multiset.

Parameters

const t& Element

A reference to the element to be inserted.

Notes

The element is inserted at the back of the key range.