MCPcopy Create free account
hub / github.com/beefytech/Beef / StartsWith

Method StartsWith

IDEHelper/Compiler/BfSystem.cpp:322–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322bool BfAtomComposite::StartsWith(const BfAtomComposite& other) const
323{
324 if (mSize < other.mSize)
325 return false;
326 for (int i = 0; i < other.mSize; i++)
327 if (mParts[i] != other.mParts[i])
328 return false;
329 return true;
330}
331
332bool BfAtomComposite::EndsWith(const BfAtomComposite& other) const
333{

Callers 15

ResolveTypeRefMethod · 0.45
DoLookupIdentifierMethod · 0.45
LookupSplatMemberMethod · 0.45
MatchMethodMethod · 0.45
GetEmitSourceMethod · 0.45
CheckBreakpointMethod · 0.45
ParseFormatInfoMethod · 0.45
DbgVisFailedMethod · 0.45
EvaluateMethod · 0.45
GetStackFrameInfoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected