Struct template is_vector_port

boost::dataflow::is_vector_port — Boolean Metafunction determining whether a type is a VectorPort.

Synopsis

template<typename T, typename Tag = default_tag, typename Enable = void> 
struct is_vector_port {
  // types
  typedef bool        value_type;  // Integral Constant value type. 
  typedef unspecified value;       // true if T models Port, false otherwise. 
  typedef unspecified type;        // Integral Constant. 
};

Description

is_vector_port<T, Tag> is an Integral Constant of type bool. It evaluates to true if T models VectorPort, false otherwise.