15#ifndef DDL_UTILITY_STRING_CHECK_H_INCLUDED
16#define DDL_UTILITY_STRING_CHECK_H_INCLUDED
31bool isInteger(
const std::string& string_to_check)
noexcept;
78 const std::string& to_replace,
79 const std::string& replace_with);
definition of the old compatibility utility namespace
Definition datamodel_keyvalue.h:160
bool isInteger(const std::string &string_to_check) noexcept
Checks if the given string is an integer value.
definition of the dd namespace
Definition datamodel_base.h:26
definition of the utility namespace
Definition ddl.h:66
void replaceInString(std::string &string_data, const std::string &to_replace, const std::string &replace_with)
In place replacement helper function.
Optional< int > toType(const std::string &from_string, const Optional< int > &default_value={})
specialized conversion to the Optional<int>
definition of the ddl namespace
Definition codec.h:21
An optional template as long as the std::optional is not available here.
Definition access_optional.h:31