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 a snapshot of the master branch, built from commit 31ab4921bd.
PrevUpHomeNext

Function template is_palindrome

boost::algorithm::is_palindrome

Synopsis

// In header: <boost/algorithm/is_palindrome.hpp>


template<typename Predicate> bool is_palindrome(const char * str, Predicate p);

Description

[Note] Note

This function will return true for empty sequences and for palindromes. For other sequences function will return false. Complexity: O(N).

Parameters:

p

A predicate used to compare the values.

str

C-string to be tested.

Returns:

true if the entire sequence is palindrome


PrevUpHomeNext