Teuchos - Trilinos Tools Package Version of the Day
Loading...
Searching...
No Matches
Teuchos_stack.hpp
1#ifndef TEUCHOS_STACK_HPP
2#define TEUCHOS_STACK_HPP
3
4#include <stack>
5
6namespace Teuchos {
7
8template <typename T>
9int size(std::stack<T> const& s) { return static_cast<int>(s.size()); }
10
11}
12
13#endif
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...