push_back
Syntax:
   #include <boost/bit_logic/bit_vector.hpp> 
   void push_back ( ) ;

The push_back() function removes the last element from the bit_vector.

For example:

 bit_vector<> v (4) ; 
 v = "0101";
 v.push_back() ; 							
 cout << v << endl ; 

This code would produce this output:

 101