MCPcopy Create free account
hub / github.com/catboost/catboost / Character

Method Character

library/cpp/regex/pire/pire/re_lexer.cpp:43–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43Term Term::Character(wchar32 c) { Term::CharacterRange cr; cr.first.insert(Term::String(1, c)); cr.second = false; return Term(TokenTypes::Letters, cr); }
44Term Term::Repetition(int lower, int upper) { return Term(TokenTypes::Count, RepetitionCount(lower, upper)); }
45Term Term::Dot() { return Term(TokenTypes::Dot, DotTag()); }
46Term Term::BeginMark() { return Term(TokenTypes::BeginMark, BeginTag()); }

Callers

nothing calls this directly

Calls 3

TermClass · 0.85
StringClass · 0.50
insertMethod · 0.45

Tested by

no test coverage detected