Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

std::type_info(3)					     Library Functions Manual						 std::type_info(3)

NAME
std::type_info - SYNOPSIS
Inherited by __cxxabiv1::__array_type_info, __cxxabiv1::__class_type_info, __cxxabiv1::__enum_type_info, __cxxabiv1::__function_type_info, __cxxabiv1::__fundamental_type_info, and __cxxabiv1::__pbase_type_info. Public Member Functions virtual ~type_info () virtual bool __do_catch (const type_info *__thr_type, void **__thr_obj, unsigned __outer) const virtual bool __do_upcast (const __cxxabiv1::__class_type_info *__target, void **__obj_ptr) const virtual bool __is_function_p () const virtual bool __is_pointer_p () const bool before (const type_info &__arg) const noexcept size_t hash_code () const noexcept const char * name () const noexcept bool operator!= (const type_info &__arg) const noexcept bool operator== (const type_info &__arg) const noexcept Protected Member Functions type_info (const char *__n) Protected Attributes const char * __name Detailed Description Part of RTTI. The type_info class describes type information generated by an implementation. Definition at line 88 of file typeinfo. Constructor &; Destructor Documentation virtual std::type_info::~type_info () [virtual] Destructor first. Being the first non-inline virtual function, this controls in which translation unit the vtable is emitted. The compiler makes use of that information to know where to emit the runtime-mandated type_info structures in the new-abi. Member Function Documentation const char* std::type_info::name () const [inline], [noexcept] Returns an implementation-defined byte string; this is not portable between compilers! Definition at line 99 of file typeinfo. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::type_info(3)

Check Out this Related Man Page

std::array< _Tp, _Nm >(3)				     Library Functions Manual					 std::array< _Tp, _Nm >(3)

NAME
std::array< _Tp, _Nm > - SYNOPSIS
Public Types typedef ::__array_traits< _Tp, _Nm > _AT_Type" typedef const value_type * const_iterator typedef const value_type * const_pointer typedef const value_type & const_reference typedef std::reverse_iterator < const_iterator > const_reverse_iterator" typedef std::ptrdiff_t difference_type typedef value_type * iterator typedef value_type * pointer typedef value_type & reference typedef std::reverse_iterator < iterator > reverse_iterator" typedef std::size_t size_type typedef _Tp value_type Public Member Functions reference at (size_type __n) constexpr const_reference at (size_type __n) const reference back () constexpr const_reference back () const iterator begin () noexcept const_iterator begin () const noexcept const_iterator cbegin () const noexcept const_iterator cend () const noexcept const_reverse_iterator crbegin () const noexcept const_reverse_iterator crend () const noexcept pointer data () noexcept const_pointer data () const noexcept constexpr bool empty () const noexcept iterator end () noexcept const_iterator end () const noexcept void fill (const value_type &__u) reference front () constexpr const_reference front () const constexpr size_type max_size () const noexcept void noexcept (noexcept(swap(std::declval< _Tp & >(), std::declval< _Tp & >()))) reference operator[] (size_type __n) constexpr const_reference operator[] (size_type __n) const noexcept reverse_iterator rbegin () noexcept const_reverse_iterator rbegin () const noexcept reverse_iterator rend () noexcept const_reverse_iterator rend () const noexcept constexpr size_type size () const noexcept Public Attributes _AT_Type::_Type _M_elems Detailed Description template<typename _Tp, std::size_t _Nm>struct std::array< _Tp, _Nm > A standard container for storing a fixed size sequence of elements. Meets the requirements of a container, a reversible container, and a sequence. Sets support random access iterators. Template Parameters: Tp Type of element. Required to be a complete type. N Number of elements. Definition at line 81 of file array. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::array< _Tp, _Nm >(3)
Man Page