-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_optional.cpp
58 lines (51 loc) · 1.3 KB
/
bench_optional.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <benchmark/benchmark.h>
#include <optional>
#include <string>
#include <vector>
std::optional<std::string> get_optional(bool initialized) {
if (initialized) {
return "1ce80ed4-cbac-4bdc-8221-111010195b61";
}
return {};
}
static void PushBack(benchmark::State& state) {
size_t i = 0;
std::vector<std::string> v;
for (auto _ : state) {
if (auto optionalS_ = get_optional(i++ % 2 == 0)) {
v.push_back(optionalS_.value());
}
}
}
static void EmplaceBackGet(benchmark::State& state) {
size_t i = 0;
std::vector<std::string> v;
for (auto _ : state) {
if (auto optionalS_ = get_optional(i++ % 2 == 0)) {
v.emplace_back(optionalS_.value());
}
}
}
static void EmplaceBackDeref(benchmark::State& state) {
size_t i = 0;
std::vector<std::string> v;
for (auto _ : state) {
if (auto optionalS_ = get_optional(i++ % 2 == 0)) {
v.emplace_back(*optionalS_);
}
}
}
static void EmplaceBackDerefMove(benchmark::State& state) {
size_t i = 0;
std::vector<std::string> v;
for (auto _ : state) {
if (auto optionalS_ = get_optional(i++ % 2 == 0)) {
v.emplace_back(std::move(*optionalS_));
}
}
}
// Register the function as a benchmark
BENCHMARK(PushBack);
BENCHMARK(EmplaceBackGet);
BENCHMARK(EmplaceBackDeref);
BENCHMARK(EmplaceBackDerefMove);