Stan  2.14.0
probability, sampling & optimization
has_cdf_suffix_def.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_FUN_HAS_CDF_SUFFIX_DEF_HPP
2 #define STAN_LANG_AST_FUN_HAS_CDF_SUFFIX_DEF_HPP
3 
4 #include <stan/lang/ast.hpp>
5 #include <string>
6 
7 namespace stan {
8  namespace lang {
9 
10  bool has_cdf_suffix(const std::string& fname) {
11  return ends_with("_lcdf", fname) || ends_with("_cdf_log", fname);
12  }
13 
14  }
15 }
16 #endif
bool has_cdf_suffix(const std::string &name)
Return true if the specified function name has a suffix indicating it is a CDF.
Probability, optimization and sampling library.
bool ends_with(const std::string &suffix, const std::string &s)
Returns true if the specified suffix appears at the end of the specified string.

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