1<% 2 hana = (0...50).step(5).to_a + (50..200).step(25).to_a 3 fusion = (0...50).step(5).to_a 4 mpl = hana 5 meta = hana 6%> 7 8{ 9 "title": { 10 "text": "Compile-time behavior of find_if" 11 }, 12 "series": [ 13 { 14 "name": "hana::tuple", 15 "data": <%= time_compilation('compile.hana.tuple.erb.cpp', hana) %> 16 } 17 18 <% if false %> 19 , { 20 "name": "hana::set", 21 "data": <%= time_compilation('compile.hana.set.erb.cpp', hana) %> 22 }, { 23 "name": "hana::map", 24 "data": <%= time_compilation('compile.hana.map.erb.cpp', hana) %> 25 } 26 <% end %> 27 28 , { 29 "name": "std::integer_sequence", 30 "data": <%= time_compilation('compile.std.integer_sequence.erb.cpp', hana) %> 31 } 32 33 <% if cmake_bool("@Boost_FOUND@") %> 34 , { 35 "name": "fusion::vector", 36 "data": <%= time_compilation('compile.fusion.vector.erb.cpp', fusion) %> 37 }, { 38 "name": "fusion::list", 39 "data": <%= time_compilation('compile.fusion.list.erb.cpp', fusion) %> 40 }, { 41 "name": "mpl::vector", 42 "data": <%= time_compilation('compile.mpl.vector.erb.cpp', mpl) %> 43 } 44 <% end %> 45 46 <% if cmake_bool("@Meta_FOUND@") %> 47 , { 48 "name": "meta::list", 49 "data": <%= time_compilation('compile.meta.list.erb.cpp', meta) %> 50 } 51 <% end %> 52 ] 53} 54