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

Function MethodA

IDE/mintest/src/cpp/sys.cpp:353–370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

351 };
352
353 void MethodA()
354 {
355 Class00 class00;
356 class00.mVal1 = 1;
357
358 StructC1 c1Arr[4] = { StructC1(10, 20), StructC1(20, 30), StructC1(30, 40), StructC1(40, 50) };
359
360 std::vector<StructC1> c1Vec = { StructC1(10, 20), StructC1(20, 30), StructC1(30, 40), StructC1(40, 50) };
361
362 std::map<int, StructC1> mapA;
363 mapA[2] = StructC1(1, 2);
364 mapA[1] = StructC1(2, 3);
365 mapA[3] = StructC1(3, 4);
366 mapA[0] = StructC1(4, 5);
367
368 auto& firstVal = *mapA.begin();
369 int z = 99;
370 }
371
372 void MethodB()
373 {

Callers 1

CPPSTestMethod · 0.85

Calls 2

StructC1Class · 0.85
beginMethod · 0.45

Tested by

no test coverage detected