Stan Math Library  2.8.0
reverse mode automatic differentiation
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Groups
is_vector.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_META_IS_VECTOR_HPP
2 #define STAN_MATH_PRIM_SCAL_META_IS_VECTOR_HPP
3 
4 namespace stan {
5 
6  // FIXME: use boost::type_traits::remove_all_extents to
7  // extend to array/ptr types
8 
9  template <typename T>
10  struct is_vector {
11  enum { value = 0 };
12  typedef T type;
13  };
14 }
15 #endif
16 

     [ Stan Home Page ] © 2011–2015, Stan Development Team.