MCPcopy Create free account
hub / github.com/ablab/spades / lower

Method lower

ext/src/llvm/StringRef.cpp:108–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106//===----------------------------------------------------------------------===//
107
108std::string StringRef::lower() const {
109 std::string Result(size(), char());
110 for (size_type i = 0, e = size(); i != e; ++i) {
111 Result[i] = toLower(Data[i]);
112 }
113 return Result;
114}
115
116std::string StringRef::upper() const {
117 std::string Result(size(), char());

Calls 2

toLowerFunction · 0.85
sizeClass · 0.50