Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::basic_static_string

Construct a basic_static_string.

BOOST_STATIC_STRING_CPP11_CONSTEXPR
basic_static_string();
  » more...

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

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

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

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

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

template<
    typename InputIterator,
    typename std::enable_if< detail::is_input_iterator< InputIterator > ::value >::type * = nullptr>
BOOST_STATIC_STRING_CPP14_CONSTEXPR
basic_static_string(
    InputIterator first,
    InputIterator last);
  » more...

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

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

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

template<
    typename T,
    [role red error.class-detail-template.1][role red error.class-detail-template.2] = detail::enable_if_viewable_t<T, CharT, Traits>>
explicit
BOOST_STATIC_STRING_CPP14_CONSTEXPR
basic_static_string(
    const T& t);
  » more...

template<
    typename T,
    [role red error.class-detail-template.1][role red error.class-detail-template.2] = detail::enable_if_viewable_t<T, CharT, Traits>>
BOOST_STATIC_STRING_CPP14_CONSTEXPR
basic_static_string(
    const T& t,
    size_type pos,
    size_type n);
  » more...

PrevUpHomeNext