Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
size.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__MATRIX__SIZE_HPP
2 #define STAN__MATH__MATRIX__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–2014, Stan Development Team.