|
iterators
Syntax:
#include <boost/bit_logic/bit_container_type.hpp> iterator begin ( ) ; iterator end ( ) ; reverse_iterator begin ( ) ; reverse_iterator end ( ) ; const_iterator begin ( ) const ; const_iterator end ( ) const ; const_reverse_iterator begin ( ) const ; const_reverse_iterator end ( ) const ; Note: These functions are equivelant for all bit_container types. bit_array<N>, bit_vector, bit_container_adaptorThe iterator member functions return an iterator to an indidual bit within a Bit Container classes. They are meant for use with STL compatible* algorithms. These member functions does not throw. |