byteman
1.3 (Build #225)
Bitstream relocation and manipulation tool
|
#include <iostream>
#include <string>
#include <sstream>
Go to the source code of this file.
Namespaces | |
str | |
str::iff | |
Functions | |
template<typename ... Rest> | |
bool | str::iff::charIs (char checkedChar) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::charIs (char checkedChar, char nextChar, Rest ... restChars) |
Returns true if char checkedChar matches any of chars nextChar or restChars . More... | |
template<typename ... Rest> | |
bool | str::iff::firstStringWordIs (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString's first word matches fully any of strings nextString or restStrings . More... | |
template<typename ... Rest> | |
bool | str::iff::stringBeginsWith (std::string checkedString) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::stringBeginsWith (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString's first characters match fully any of strings nextString or restStrings . More... | |
template<typename ... Rest> | |
bool | str::iff::stringContains (std::string checkedString) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::stringContains (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString contains any of strings nextString or restStrings . More... | |
template<typename ... Rest> | |
bool | str::iff::stringEndsWith (std::string checkedString) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::stringEndsWith (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString's final characters match fully any of strings nextString or restStrings . More... | |
template<typename ... Rest> | |
bool | str::iff::stringIs (std::string checkedString) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::stringIs (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString matches fully any of strings nextString or restStrings . More... | |
template<typename ... Rest> | |
bool | str::iff::stringWordIs (std::string checkedString) |
Returns false. End of recursion for template. More... | |
template<typename ... Rest> | |
bool | str::iff::stringWordIs (std::string checkedString, std::string nextString, Rest ... restStrings) |
Returns true if string checkedString matches fully any of strings nextString or restStrings . More... | |