This is Unofficial EPICS BASE Doxygen Site
epics::pvData::detail::shared_vector_converter< TO, FROM, Enable > Struct Template Reference

#include "sharedVector.h"

Static Public Member Functions

static shared_vector< TO > op (const shared_vector< FROM > &src)
 

Detailed Description

template<typename TO, typename FROM, class Enable = void>
struct epics::pvData::detail::shared_vector_converter< TO, FROM, Enable >

Definition at line 801 of file sharedVector.h.

Member Function Documentation

template<typename TO , typename FROM , class Enable = void>
static shared_vector<TO> epics::pvData::detail::shared_vector_converter< TO, FROM, Enable >::op ( const shared_vector< FROM > &  src)
inlinestatic

Definition at line 802 of file sharedVector.h.

803  {
804  shared_vector<TO> ret(src.size());
805  std::transform(src.begin(), src.end(), ret.begin(), castUnsafe<TO,FROM>);
806  return ret;
807  }

The documentation for this struct was generated from the following file: