Stan Math Library  2.6.3
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
size.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_SIZE_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_SIZE_HPP
3 
4 #include <vector>
5 
6 namespace stan {
7  namespace math {
8 
9  template <typename T>
10  inline int
11  size(const std::vector<T>& x) {
12  return x.size();
13  }
14 
15  }
16 }
17 #endif
int size(const std::vector< T > &x)
Definition: size.hpp:11

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