Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template is_any_of

boost::algorithm::is_any_of — is_any_of predicate

Synopsis

template<typename ContainerT> unspecified is_any_of(const ContainerT & Set);

Description

Construct the is_any_of predicate. The predicate holds if the input is included in the specified set of characters.

Parameters

Set

A set of characters to be recognized

Returns: An instance of the is_any_of predicate

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext