RESTinio
Loading...
Searching...
No Matches
cast_to.hpp
Go to the documentation of this file.
1/*
2 restinio
3*/
4
9#pragma once
10
11#include <string>
12
14
16
17namespace restinio
18{
19
20//
21// cast_to()
22//
23
25template < typename Value_Type >
28{
29 return utils::from_string< Value_Type >( str_representation );
30}
31
32} /* namespace restinio */
33
run_on_this_thread_settings_t< Traits > on_this_thread()
A special marker for the case when http_server must be run on the context of the current thread.
std::string_view string_view_t
Value_Type cast_to(string_view_t str_representation)
Cast string representation to a given type.
Definition cast_to.hpp:27