From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/_string_utils_8hpp.xhtml | 153 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 21.08/_string_utils_8hpp.xhtml (limited to '21.08/_string_utils_8hpp.xhtml') diff --git a/21.08/_string_utils_8hpp.xhtml b/21.08/_string_utils_8hpp.xhtml new file mode 100644 index 0000000000..453582b99b --- /dev/null +++ b/21.08/_string_utils_8hpp.xhtml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + +ArmNN: include/armnn/utility/StringUtils.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StringUtils.hpp File Reference
+
+
+
#include <iostream>
+#include <sstream>
+
+

Go to the source code of this file.

+ + + + + + + +

+Namespaces

 armnn
 Copyright (c) 2021 ARM Limited and Contributors.
 
 armnn::stringUtils
 
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

std::vector< std::string > StringTokenizer (const std::string &str, const char *delimiters, bool tokenCompression=true)
 Function to take a string and a list of delimiters and split the string into tokens based on those delimiters This assumes that tokens are also to be split by newlines Enabling tokenCompression merges adjacent delimiters together, preventing empty tokens. More...
 
std::string & StringStartTrim (std::string &str, const std::string &chars="\\\")
 Trim from the start of a string. More...
 
std::string & StringEndTrim (std::string &str, const std::string &chars="\\\")
 Trim for the end of a string. More...
 
std::string & StringTrim (std::string &str, const std::string &chars="\\\")
 Trim from both the start and the end of a string. More...
 
std::string StringTrimCopy (const std::string &str, const std::string &chars="\\\")
 Trim from both the start and the end of a string, returns a trimmed copy of the string. More...
 
std::string StringConcat (const std::vector< std::string > &strings, std::string seperator="")
 Takes a vector of strings and concatenates them together into one long std::string with an optional seperator between each. More...
 
void StringReplaceAll (std::string &str, const std::string &oldStr, const std::string &newStr)
 Iterates over a given str and replaces all instance of substring oldStr with newStr. More...
 
+
+
+ + + + -- cgit v1.2.1