BitMagic-C++
Public Types | Public Member Functions
bm::bvector< Alloc >::enumerator Class Reference

Constant iterator designed to enumerate "ON" bits. More...

#include <bm.h>

Inheritance diagram for bm::bvector< Alloc >::enumerator:
Inheritance graph
[legend]
Collaboration diagram for bm::bvector< Alloc >::enumerator:
Collaboration graph
[legend]

Public Types

typedef std::input_iterator_tag iterator_category
 
typedef size_type value_type
 
typedef unsigned difference_type
 
typedef unsigned * pointer
 
typedef unsigned & reference
 

Public Member Functions

 enumerator () BMNOEXCEPT
 
 enumerator (const bvector< Alloc > *bv) BMNOEXCEPT
 Construct enumerator associated with a vector. Important: This construction creates unpositioned iterator with status valid() == false. It can be re-positioned using go_first() or go_to(). More...
 
 enumerator (const bvector< Alloc > &bv, size_type pos=0) BMNOEXCEPT
 Construct enumerator for bit vector. More...
 
 enumerator (const bvector< Alloc > *bv, size_type pos) BMNOEXCEPT
 Construct enumerator for bit vector. More...
 
size_type operator* () const BMNOEXCEPT
 Get current position (value) More...
 
size_type value () const BMNOEXCEPT
 Get current position (value) More...
 
enumeratoroperator++ () BMNOEXCEPT
 Advance enumerator forward to the next available bit. More...
 
enumerator operator++ (int) BMNOEXCEPT
 Advance enumerator forward to the next available bit. Possibly do NOT use this operator it is slower than the pre-fix increment. More...
 
void go_first () BMNOEXCEPT
 Position enumerator to the first available bit. More...
 
bool advance () BMNOEXCEPT
  More...
 
bool go_up () BMNOEXCEPT
 Advance enumerator to the next available bit. More...
 
bool skip_to_rank (size_type rank) BMNOEXCEPT
 Skip to specified relative rank. More...
 
bool skip (size_type rank) BMNOEXCEPT
 Skip specified number of bits from enumeration. More...
 
bool go_to (size_type pos) BMNOEXCEPT
 go to a specific position in the bit-vector (or next) More...
 
- Public Member Functions inherited from bm::bvector< Alloc >::iterator_base
 iterator_base () BMNOEXCEPT
 
bool operator== (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool operator!= (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool operator< (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool operator<= (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool operator> (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool operator>= (const iterator_base &it) const BMNOEXCEPT
  More...
 
bool valid () const BMNOEXCEPT
 Checks if iterator is still valid. More...
 
void invalidate () BMNOEXCEPT
 Turns iterator into an invalid state. More...
 
bool compare_state (const iterator_base &ib) const BMNOEXCEPT
 Compare FSMs for testing purposes. More...
 

Additional Inherited Members

- Protected Attributes inherited from bm::bvector< Alloc >::iterator_base
bm::bvector< Alloc > * bv_
 Pointer on parent bitvector. More...
 
size_type position_
 Bit position (bit idx) More...
 
const bm::word_tblock_
 Block pointer.(NULL-invalid) More...
 
unsigned block_type_
 Type of block. 0-Bit, 1-GAP. More...
 
block_idx_type block_idx_
 Block index. More...
 
union bm::bvector::iterator_base::block_descr bdescr_
  More...
 

Detailed Description

template<class Alloc>
class bm::bvector< Alloc >::enumerator

Constant iterator designed to enumerate "ON" bits.

Examples
bv3vlogic.cpp, bvsample01_64.cpp, bvsetalgebra.cpp, sample24.cpp, sample5.cpp, sample8.cpp, svsample04.cpp, svsample05.cpp, svsample06.cpp, xsample01.cpp, xsample03.cpp, xsample04.cpp, xsample07.cpp, and xsample07a.cpp.

Definition at line 602 of file bm.h.

Constructor & Destructor Documentation

◆ enumerator() [1/3]

template<class Alloc >
bm::bvector< Alloc >::enumerator::enumerator ( const bvector< Alloc > *  bv)
inline

Construct enumerator associated with a vector. Important: This construction creates unpositioned iterator with status valid() == false. It can be re-positioned using go_first() or go_to().

See also
go_to

Definition at line 622 of file bm.h.

References bm::bvector< Alloc >::iterator_base::bv_.

◆ enumerator() [2/3]

template<class Alloc >
bm::bvector< Alloc >::enumerator::enumerator ( const bvector< Alloc > &  bv,
size_type  pos = 0 
)
inline

Construct enumerator for bit vector.

Parameters
bvbit-vector reference
posbit position in the vector if position is 0, it finds the next 1 or becomes not valid (en.valid() == false)

Definition at line 634 of file bm.h.

References bm::bvector< Alloc >::iterator_base::bv_, and bm::bvector< Alloc >::enumerator::go_to().

◆ enumerator() [3/3]

template<class Alloc >
bm::bvector< Alloc >::enumerator::enumerator ( const bvector< Alloc > *  bv,
size_type  pos 
)
inline

Construct enumerator for bit vector.

Parameters
bvbit-vector pointer
posbit position in the vector if position is 0, it finds the next 1 or becomes not valid (en.valid() == false)

Definition at line 648 of file bm.h.

References bm::bvector< Alloc >::iterator_base::bv_, and bm::bvector< Alloc >::enumerator::go_to().

Member Function Documentation

◆ advance()

template<class Alloc >
bool bm::bvector< Alloc >::enumerator::advance ( )
inline

advance iterator forward by one

Returns
true if advance was successfull and the enumerator is valid

Definition at line 680 of file bm.h.

References bm::bvector< Alloc >::enumerator::go_up().

Referenced by bm::rsc_sparse_vector< Val, SV >::decode(), and bm::rsc_sparse_vector< Val, SV >::decode_buf().

◆ go_first()

template<class Alloc >
void bm::bvector< Alloc >::enumerator::go_first

◆ go_to()

template<class Alloc >
bool bm::bvector< Alloc >::enumerator::go_to ( size_type  pos)

◆ go_up()

template<class Alloc >
bool bm::bvector< Alloc >::enumerator::go_up

◆ operator*()

template<class Alloc >
size_type bm::bvector< Alloc >::enumerator::operator* ( ) const
inline

Get current position (value)

Definition at line 656 of file bm.h.

References bm::bvector< Alloc >::iterator_base::position_.

◆ operator++() [1/2]

template<class Alloc >
enumerator& bm::bvector< Alloc >::enumerator::operator++ ( )
inline

Advance enumerator forward to the next available bit.

Definition at line 662 of file bm.h.

References bm::bvector< Alloc >::enumerator::go_up().

◆ operator++() [2/2]

template<class Alloc >
enumerator bm::bvector< Alloc >::enumerator::operator++ ( int  )
inline

Advance enumerator forward to the next available bit. Possibly do NOT use this operator it is slower than the pre-fix increment.

Definition at line 667 of file bm.h.

References bm::bvector< Alloc >::enumerator::go_up().

◆ skip()

template<class Alloc >
bool bm::bvector< Alloc >::enumerator::skip ( size_type  rank)

◆ skip_to_rank()

template<class Alloc >
bool bm::bvector< Alloc >::enumerator::skip_to_rank ( size_type  rank)
inline

Skip to specified relative rank.

Parameters
rank- number of ON bits to go for (must be: > 0)
Returns
true if skip was successfull and enumerator is valid

Definition at line 690 of file bm.h.

References BM_ASSERT, bm::bvector< Alloc >::rank(), bm::bvector< Alloc >::enumerator::skip(), and bm::bvector< Alloc >::iterator_base::valid().

◆ value()

template<class Alloc >
size_type bm::bvector< Alloc >::enumerator::value ( ) const
inline

The documentation for this class was generated from the following file: