MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / main

Function main

03.01-rangesMotivation0/main.cpp:7–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <string>
6
7int main()
8{
9 const std::string firstText{"Hello"};
10 const std::string secondText{"Bello"};
11
12 const bool equal = std::equal(
13 firstText.begin(), firstText.end(), secondText.begin());
14}

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected