PrevUpHomeNext

Struct optional_ref<bool const, true>

boost::text::optional_ref<bool const, true>

Synopsis

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


struct optional_ref<bool const, true> {
  // construct/copy/destruct
  optional_ref();
  optional_ref(bool const &);

  // public member functions
  explicit operator bool() const;
  explicit operator bool();
  bool const & operator*() const;
  bool const * operator->() const;
};

Description

optional_ref public construct/copy/destruct

  1. optional_ref();
  2. optional_ref(bool const & t);

optional_ref public member functions

  1. explicit operator bool() const;
  2. explicit operator bool();
  3. bool const & operator*() const;
  4. bool const * operator->() const;

PrevUpHomeNext