MCPcopy Create free account
hub / github.com/RenderKit/embree / StringStream

Method StringStream

common/lexers/stringstream.cpp:17–22  ·  view source on GitHub ↗

simple tokenizer */

Source from the content-addressed store, hash-verified

15
16 /* simple tokenizer */
17 StringStream::StringStream(const Ref<Stream<int> >& cin, const std::string& seps, const std::string& endl, bool multiLine)
18 : cin(cin), endl(endl), multiLine(multiLine)
19 {
20 createCharMap(isSepMap,seps);
21 createCharMap(isValidCharMap,stringChars);
22 }
23
24 std::string StringStream::next()
25 {

Callers

nothing calls this directly

Calls 1

createCharMapFunction · 0.70

Tested by

no test coverage detected