#include "mstch/mstch.hpp" #include #include int main() { std::string comment_tmp{ "

{{header}}

    " "{{#comments}}
  • {{name}}
    " "

    {{body}}

  • {{/comments}}
" }; auto comment_view = mstch::object{ {"header", std::string{"My Post Comments"}}, {"comments", mstch::array{ mstch::object{{"name", std::string{"Joe"}}, {"body", std::string{"Thanks for this post!"}}}, mstch::object{{"name", std::string{"Sam"}}, {"body", std::string{"Thanks for this post!"}}}, mstch::object{{"name", std::string{"Heather"}}, {"body", std::string{"Thanks for this post!"}}}, mstch::object{{"name", std::string{"Kathy"}}, {"body", std::string{"Thanks for this post!"}}}, mstch::object{{"name", std::string{"George"}}, {"body", std::string{"Thanks for this post!"}}} }} }; std::vector times; for(int j = 0; j < 10; j++) { unsigned long start = std::chrono::system_clock::now().time_since_epoch() / std::chrono::milliseconds(1); for(int i = 0; i < 5000; i++) { mstch::render(comment_tmp, comment_view); } times.push_back((std::chrono::system_clock::now().time_since_epoch() / std::chrono::milliseconds(1)) - start); } float avg = 0; for(int i: times) avg += i; avg /= times.size(); std::cout << avg << std::endl; return 0; }