Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Union repr_t

boost::container::dtl::basic_string_base::repr_t

Synopsis

// In header: <boost/container/string.hpp>



union repr_t {

  // public member functions
  const short_t & short_repr() const;
  const long_t & long_repr() const;
  short_t & short_repr();
  long_t & long_repr();

  // public data members
  long_raw_t r;
  short_t s;
};

Description

repr_t public member functions

  1. const short_t & short_repr() const;
  2. const long_t & long_repr() const;
  3. short_t & short_repr();
  4. long_t & long_repr();

PrevUpHomeNext