PrevUpHomeNext

Struct template trie_set_iterator

boost::text::trie_set_iterator

Synopsis

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

template<typename Key> 
struct trie_set_iterator : public stl_interfaces::proxy_iterator_interface< trie_set_iterator< Key >, std::bidirectional_iterator_tag, Key >
{
  // construct/copy/destruct
  trie_set_iterator();

  // public member functions
  Key operator*() const;
  stl_interfaces::proxy_arrow_result< Key > operator->() const;
};

Description

trie_set_iterator public construct/copy/destruct

  1. trie_set_iterator();

trie_set_iterator public member functions

  1. Key operator*() const;
  2. stl_interfaces::proxy_arrow_result< Key > operator->() const;

PrevUpHomeNext