Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

shevek_rostring(3) [debian man page]

shevek::rostring(3)					     Library Functions Manual					       shevek::rostring(3)

NAME
shevek::rostring - shevek::rostring is identical to shevek::ostring, but it uses std::string instead of Glib::ustring. SYNOPSIS
#include <iostring.hh> Public Member Functions operator std::string () const Use the result as a string. std::string operator+ (std::string const &that) const Use the result as a string. rostring (std::string const &fmt) Create a string with a constant format. template<typename T1 > rostring (std::string const &fmt, T1 const &a1) Create a string with one argument. template<typename T1 , typename T2 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2) Create a string with two arguments. template<typename T1 , typename T2 , typename T3 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3) Create a string with three arguments. template<typename T1 , typename T2 , typename T3 , typename T4 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4) Create a string with four arguments. template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4, T5 const &a5) Create a string with five arguments. template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4, T5 const &a5, T6 const &a6) Create a string with six arguments. template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4, T5 const &a5, T6 const &a6, T7 const &a7) Create a string with seven arguments. template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4, T5 const &a5, T6 const &a6, T7 const &a7, T8 const &a8) Create a string with eight arguments. template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > rostring (std::string const &fmt, T1 const &a1, T2 const &a2, T3 const &a3, T4 const &a4, T5 const &a5, T6 const &a6, T7 const &a7, T8 const &a8, T9 const &a9) Create a string with nine arguments. Friends std::ostream & operator<< (std::ostream &s, rostring const &o) Send the result to an ostream. Detailed Description shevek::rostring is identical to shevek::ostring, but it uses std::string instead of Glib::ustring. Author Generated automatically by Doxygen for libshevek from the source code. libshevek Fri May 11 2012 shevek::rostring(3)

Check Out this Related Man Page

std::tuple< _Elements >(3)				     Library Functions Manual					std::tuple< _Elements >(3)

NAME
std::tuple< _Elements > - SYNOPSIS
Inherits std::_Tuple_impl< 0, _Elements...>. Public Member Functions constexpr tuple (const _Elements &...__elements) template<typename... _UElements, typename = typename enable_if<__and_<is_convertible<_UElements, _Elements>...>::value>::type> constexpr tuple (_UElements &&...__elements) constexpr tuple (const tuple &)=default constexpr tuple (tuple &&)=default template<typename... _UElements, typename = typename enable_if<__and_<is_convertible<const _UElements&, _Elements>...>::value>::type> constexpr tuple (const tuple< _UElements...> &__in) template<typename... _UElements, typename = typename enable_if<__and_<is_convertible<_UElements, _Elements>...>::value>::type> constexpr tuple (tuple< _UElements...> &&__in) template<typename _Alloc > tuple (allocator_arg_t __tag, const _Alloc &__a) template<typename _Alloc > tuple (allocator_arg_t __tag, const _Alloc &__a, const _Elements &...__elements) template<typename _Alloc , typename... _UElements, typename = typename enable_if<sizeof...(_UElements) == sizeof...(_Elements)>::type> tuple (allocator_arg_t __tag, const _Alloc &__a, _UElements &&...__elements) template<typename _Alloc > tuple (allocator_arg_t __tag, const _Alloc &__a, const tuple &__in) template<typename _Alloc > tuple (allocator_arg_t __tag, const _Alloc &__a, tuple &&__in) template<typename _Alloc , typename... _UElements, typename = typename enable_if<sizeof...(_UElements) == sizeof...(_Elements)>::type> tuple (allocator_arg_t __tag, const _Alloc &__a, const tuple< _UElements...> &__in) template<typename _Alloc , typename... _UElements, typename = typename enable_if<sizeof...(_UElements) == sizeof...(_Elements)>::type> tuple (allocator_arg_t __tag, const _Alloc &__a, tuple< _UElements...> &&__in) void noexcept (noexcept(__in._M_swap(__in))) tuple & operator= (const tuple &__in) tuple & operator= (tuple &&__in) noexcept(is_nothrow_move_assignable< _Inherited >::value) template<typename... _UElements, typename = typename enable_if<sizeof...(_UElements) == sizeof...(_Elements)>::type> tuple & operator= (const tuple< _UElements...> &__in) template<typename... _UElements, typename = typename enable_if<sizeof...(_UElements) == sizeof...(_Elements)>::type> tuple & operator= (tuple< _UElements...> &&__in) Detailed Description template<typename... _Elements>class std::tuple< _Elements > Primary class template, tuple. Definition at line 388 of file tuple. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::tuple< _Elements >(3)
Man Page