// // immer: immutable data structures for C++ // Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente // // This software is distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt // #pragma once #include "benchmark/config.hpp" #include #include // Phil Nash #include #include #include namespace { template auto benchmark_insert_mut_std() { return [] (nonius::chronometer meter) { auto n = meter.param(); auto g = Generator{}(n); measure(meter, [&] { auto v = Set{}; for (auto i = 0u; i < n; ++i) v.insert(g[i]); return v; }); }; } template auto benchmark_insert() { return [] (nonius::chronometer meter) { auto n = meter.param(); auto g = Generator{}(n); measure(meter, [&] { auto v = Set{}; for (auto i = 0u; i < n; ++i) v = v.insert(g[i]); return v; }); }; } } // namespace