boost::dynamic_bitset::find_next_off

Finds the first unset bit in *this with an index > pos, if any.

Synopsis

Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>

size_type
find_next_off(size_type pos) const;

Return Value

The lowest index i greater than pos such that bit i is unset, or npos if no such index exists.

Parameters

Name Description

pos

The lower bound (exclusively) to start the search from.

Created with MrDocs