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 to view this page for the latest version.
PrevUpHomeNext

basic_static_string::basic_static_string

Constructor.

constexpr
basic_static_string();
  » more...

constexpr
basic_static_string(
    size_type count,
    value_type ch);
  » more...

template<
    std::size_t M>
constexpr
basic_static_string(
    const basic_static_string< M, CharT, Traits >& other,
    size_type pos);
  » more...

template<
    std::size_t M>
constexpr
basic_static_string(
    const basic_static_string< M, CharT, Traits >& other,
    size_type pos,
    size_type count);
  » more...

constexpr
basic_static_string(
    const_pointer s,
    size_type count);
  » more...

constexpr
basic_static_string(
    const_pointer s);
  » more...

template<
    typename InputIterator>
constexpr
basic_static_string(
    InputIterator first,
    InputIterator last);
  » more...

constexpr
basic_static_string(
    const basic_static_string& other);
  » more...

template<
    std::size_t M>
constexpr
basic_static_string(
    const basic_static_string< M, CharT, Traits >& other);
  » more...

constexpr
basic_static_string(
    std::initializer_list< value_type > init);
  » more...

template<
    typename T>
explicit
constexpr
basic_static_string(
    const T& t);
  » more...

template<
    typename T>
constexpr
basic_static_string(
    const T& t,
    size_type pos,
    size_type n);
  » more...

PrevUpHomeNext