Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct is_iequal

boost::algorithm::is_iequal — case insensitive version of is_equal

Synopsis

// In header: <boost/algorithm/string/compare.hpp>


struct is_iequal {
  // construct/copy/destruct
  ( = );

  // public member functions
  template<typename T1, typename T2> 
     (, ) ;
};

Description

Case insensitive comparison predicate. Comparison is done using specified locales.

is_iequal public construct/copy/destruct

  1. ( Loc = );
    Constructor.

    Parameters:

    Loc

    locales used for comparison

is_iequal public member functions

  1. template<typename T1, typename T2> 
       ( Arg1,  Arg2) ;
    Function operator.

    Compare two operands. Case is ignored.


PrevUpHomeNext