aGrUM  0.16.0
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-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
Definition: agrum.h:25
std::string toLower(std::string str)
Returns the lowercase version of str.
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.