MCPcopy Create free account
hub / github.com/RaftLib/RaftLib / main

Function main

examples/general/singlequeue/singlequeue.cpp:14–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13
14int
15main()
16{
17 using type_t = std::int64_t;
18 using gen = raft::random_variate< std::mt19937_64,
19 std::uniform_int_distribution,
20 type_t >;
21 using pr = raft::print< type_t, '\n' >;
22 raft::map m;
23 gen g( 10000000 );
24 pr print;
25 m += g >> print;
26 m.exe();
27 return( EXIT_SUCCESS );
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected