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 head_finder

boost::algorithm::head_finder — "Head" finder

Synopsis

unspecified head_finder(unsigned int N);

Description

Construct the head_finder . The finder returns a head of a given input. The head is a prefix of a string up to n elements in size. If an input has less then n elements, whole input is considered a head. The result is given as an iterator_range delimiting the match.

Parameters

N

The size of the head

Returns: An instance of the head_finder object

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext