Stan  2.14.0
probability, sampling & optimization
print_statement.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_NODE_PRINT_STATEMENT_HPP
2 #define STAN_LANG_AST_NODE_PRINT_STATEMENT_HPP
3 
5 #include <string>
6 #include <vector>
7 
8 namespace stan {
9  namespace lang {
10 
14  struct print_statement {
19 
26  print_statement(const std::vector<printable>& printables); // NOLINT
27 
31  std::vector<printable> printables_;
32  };
33 
34  }
35 }
36 #endif
AST node for print statements.
Probability, optimization and sampling library.
std::vector< printable > printables_
Sequence of printable objects.
print_statement()
Construct an empty print statement.

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