Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template is_permutation

boost::algorithm::is_permutation — Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2.

Synopsis

// In header: <boost/algorithm/cxx11/is_permutation.hpp>


template<typename ForwardIterator1, typename ForwardIterator2> 
  bool is_permutation(ForwardIterator1 first1, ForwardIterator1 last1, 
                      ForwardIterator2 first2);

Description

[Note] Note

This function is part of the C++2011 standard library.

Parameters:

first1

The start of the input sequence

first2

The start of the second sequence


PrevUpHomeNext