RESTinio
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 >
26Value_Type
27cast_to( string_view_t str_representation )
28{
29 return utils::from_string< Value_Type >( str_representation );
30}
31
32} /* namespace restinio */
33
nonstd::string_view string_view_t
Definition: string_view.hpp:19
Value_Type cast_to(string_view_t str_representation)
Cast string representation to a given type.
Definition: cast_to.hpp:27