PrevUpHomeNext

Struct template const_trie_range

boost::text::const_trie_range

Synopsis

// In header: <boost/text/trie_map.hpp>

template<typename Iter> 
struct const_trie_range {
  // types
  typedef Iter const_iterator;

  // public member functions
  const_iterator begin() const;
  const_iterator end() const;

  // public data members
  const_iterator first;
  const_iterator last;
};

Description

A constant range type returned by certain operations on a trie_map or trie_set.

const_trie_range public member functions

  1. const_iterator begin() const;
  2. const_iterator end() const;

PrevUpHomeNext