#include <Array_Traits_T.h>
Public Types | |
typedef T_forany | forany_type |
typedef T_forany::_array_type | value_type |
typedef T_forany::_array_type const | const_value_type |
typedef T_forany::_slice_type | slice_type |
Static Public Member Functions | |
void | copy (slice_type *_tao_to, const slice_type *_tao_from) |
void | free (slice_type *value) |
slice_type * | alloc (void) |
slice_type * | dup (const slice_type *value) |
void | zero_range (value_type *begin, value_type *end) |
void | initialize_range (value_type *begin, value_type *end) |
template<typename iter> void | copy_range (value_type *begin, value_type *end, iter dst) |
|
Definition at line 29 of file Array_Traits_T.h. |
|
Definition at line 27 of file Array_Traits_T.h. |
|
Definition at line 30 of file Array_Traits_T.h. Referenced by TAO::details::array_traits< T_forany >::alloc(), TAO::details::array_traits< T_forany >::copy(), TAO::details::array_traits< T_forany >::dup(), and TAO::details::array_traits< T_forany >::free(). |
|
Definition at line 28 of file Array_Traits_T.h. |
|
Definition at line 42 of file Array_Traits_T.h. References TAO::details::array_traits< T_forany >::slice_type.
00043 { 00044 return TAO::Array_Traits<forany_type>::alloc (); 00045 } |
|
Definition at line 32 of file Array_Traits_T.h. References TAO::details::array_traits< T_forany >::slice_type.
00033 { 00034 TAO::Array_Traits<forany_type>::copy (_tao_to, _tao_from); 00035 } |
|
Definition at line 69 of file Array_Traits_T.h.
00071 { 00072 for(value_type * i = begin; i != end; ++i, ++dst) 00073 { 00074 TAO::Array_Traits<forany_type>::copy(*dst, *i); 00075 } 00076 } |
|
Definition at line 47 of file Array_Traits_T.h. References TAO::details::array_traits< T_forany >::slice_type.
00049 { 00050 return TAO::Array_Traits<forany_type>::dup (value); 00051 } |
|
Definition at line 37 of file Array_Traits_T.h. References TAO::details::array_traits< T_forany >::slice_type.
00038 { 00039 TAO::Array_Traits<forany_type>::free (value); 00040 } |
|
Definition at line 60 of file Array_Traits_T.h.
00062 { 00063 std::for_each( 00064 begin, end, &TAO::Array_Traits<forany_type>::zero); 00065 } |
|
Definition at line 53 of file Array_Traits_T.h.
00055 { 00056 std::for_each( 00057 begin, end, &TAO::Array_Traits<forany_type>::zero); 00058 } |