Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template sub_super_set

boost::itl::sub_super_set — Functor class template contained_in implements the subset relation.

Synopsis

template<class Type > 
struct sub_super_set : public boost::itl::relation< Type, Type > {

  // public member functions
  bool operator()(const Type &, const Type &) const;
};

Description

sub_super_set public member functions

  1. bool operator()(const Type & sub, const Type & super) const;

    contained_in(sub, super) is true if sub is contained in super


PrevUpHomeNext