Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::enable_shared_from_this(3) [centos man page]

std::enable_shared_from_this< _Tp >(3)			     Library Functions Manual			    std::enable_shared_from_this< _Tp >(3)

NAME
std::enable_shared_from_this< _Tp > - SYNOPSIS
Public Member Functions shared_ptr< _Tp > shared_from_this () shared_ptr< const _Tp > shared_from_this () const Protected Member Functions enable_shared_from_this (const enable_shared_from_this &) noexcept enable_shared_from_this & operator= (const enable_shared_from_this &) noexcept Friends template<typename _Tp1 > void __enable_shared_from_this_helper (const __shared_count<> &__pn, const enable_shared_from_this *__pe, const _Tp1 *__px) noexcept Detailed Description template<typename _Tp>class std::enable_shared_from_this< _Tp > Base class allowing use of member function shared_from_this. Definition at line 541 of file shared_ptr.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::enable_shared_from_this< _Tp >(3)

Check Out this Related Man Page

std::indirect_array< _Tp >(3)				     Library Functions Manual				     std::indirect_array< _Tp >(3)

NAME
std::indirect_array< _Tp > - SYNOPSIS
Public Types typedef _Tp value_type Public Member Functions indirect_array (const indirect_array &) void operator%= (const valarray< _Tp > &) const template<class _Dom > void operator%= (const _Expr< _Dom, _Tp > &) const void operator&= (const valarray< _Tp > &) const template<class _Dom > void operator&= (const _Expr< _Dom, _Tp > &) const void operator*= (const valarray< _Tp > &) const template<class _Dom > void operator*= (const _Expr< _Dom, _Tp > &) const void operator+= (const valarray< _Tp > &) const template<class _Dom > void operator+= (const _Expr< _Dom, _Tp > &) const void operator-= (const valarray< _Tp > &) const template<class _Dom > void operator-= (const _Expr< _Dom, _Tp > &) const void operator/= (const valarray< _Tp > &) const template<class _Dom > void operator/= (const _Expr< _Dom, _Tp > &) const void operator<<= (const valarray< _Tp > &) const template<class _Dom > void operator<<= (const _Expr< _Dom, _Tp > &) const indirect_array & operator= (const indirect_array &) void operator= (const valarray< _Tp > &) const void operator= (const _Tp &) const template<class _Dom > void operator= (const _Expr< _Dom, _Tp > &) const void operator>>= (const valarray< _Tp > &) const template<class _Dom > void operator>>= (const _Expr< _Dom, _Tp > &) const void operator^= (const valarray< _Tp > &) const template<class _Dom > void operator^= (const _Expr< _Dom, _Tp > &) const void operator|= (const valarray< _Tp > &) const template<class _Dom > void operator|= (const _Expr< _Dom, _Tp > &) const Friends class gslice_array< _Tp > class valarray< _Tp > Detailed Description template<class _Tp>class std::indirect_array< _Tp > Reference to arbitrary subset of an array. An indirect_array is a reference to the actual elements of an array specified by an ordered array of indices. The way to get an indirect_array is to call operator[](valarray<size_t>) on a valarray. The returned indirect_array then permits carrying operations out on the referenced subset of elements in the original valarray. For example, if an indirect_array is obtained using the array (4,2,0) as an argument, and then assigned to an array containing (1,2,3), then the underlying array will have array[0]==3, array[2]==2, and array[4]==1. Parameters: Tp Element type. Definition at line 84 of file valarray. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::indirect_array< _Tp >(3)
Man Page