aGrUM  0.17.2
a C++ library for (probabilistic) graphical models
utils_string_inl.h
Go to the documentation of this file.
1 
30 #include <algorithm>
31 
32 // to ease IDE parser
34 namespace gum {
35 
36  INLINE
37  std::string toLower(std::string str) {
38  std::transform(str.begin(), str.end(), str.begin(), ::tolower);
39  return str;
40  }
41 
42 } /* namespace gum */
Copyright 2005-2020 Pierre-Henri WUILLEMIN () et Christophe GONZALES () info_at_agrum_dot_org.
Definition: agrum.h:25
std::string toLower(std::string str)
Returns the lowercase version of str.
Copyright 2005-2020 Pierre-Henri WUILLEMIN () et Christophe GONZALES () info_at_agrum_dot_org.