MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / SkipWhitespace

Class SkipWhitespace

tensorflow/core/platform/str_util.h:113–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 bool operator()(StringPiece sp) const { return !sp.empty(); }
112};
113struct SkipWhitespace {
114 bool operator()(StringPiece sp) const {
115 return !absl::StripTrailingAsciiWhitespace(sp).empty();
116 }
117};
118
119// Split strings using any of the supplied delimiters. For example:
120// Split("a,b.c,d", ".,") would return {"a", "b", "c", "d"}.

Callers 4

ParseElementFunction · 0.85
RewriteMethod · 0.85
RewriteMethod · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68