| 12 | |
| 13 | |
| 14 | int |
| 15 | main() |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected