Sintassi:
#include <map> iterator lower_bound( const key_type& key ); const_iterator lower_bound( const key_type& key ) const;
La funzione lower_boud() ritorna un iteratore al primo elemento la cui chiave è non inferiore al valore della chiave fornita (cioé è maggiore o uguale). Il confronto è fatto usando l'oggetto di confronto tra mappe.
lower_bound() gira in tempo logaritmico.
Argomenti correlati: upper_bound