boost::operator<

Compares two bitsets.

Synopsis

Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>

template<
    typename Block,
    typename AllocatorOrContainer>
bool
operator<(
    dynamic_bitset<Block, AllocatorOrContainer> const& a,
    dynamic_bitset<Block, AllocatorOrContainer> const& b);

Throws

Nothing.

(Required by LessThanComparable.)

Return Value

true if a is lexicographically less than b, otherwise false.

Parameters

Name Description

a

The left operand

b

The right operand

Created with MrDocs