RESTinio
|
A matcher that finds a value in the vector of allowed values of fixed size. More...
#include <method_matcher.hpp>
Public Member Functions | |
fixed_size_any_of_matcher_t (std::initializer_list< http_method_id_t > values) | |
Initializing constructor. More... | |
RESTINIO_NODISCARD bool | match (const http_method_id_t &method) const noexcept override |
Is the specified method can be applied to a route? More... | |
![]() | |
method_matcher_t (const method_matcher_t &)=default | |
method_matcher_t & | operator= (const method_matcher_t &)=default |
method_matcher_t (method_matcher_t &&)=default | |
method_matcher_t & | operator= (method_matcher_t &&)=default |
method_matcher_t ()=default | |
virtual | ~method_matcher_t ()=default |
virtual RESTINIO_NODISCARD bool | match (const http_method_id_t &method) const noexcept=0 |
Is the specified method can be applied to a route? More... | |
Private Attributes | |
std::array< http_method_id_t, Size > | m_methods |
A matcher that finds a value in the vector of allowed values of fixed size.
A method is allowed if it's found in the vector of allowed values.
Definition at line 139 of file method_matcher.hpp.
|
inline |
Initializing constructor.
Definition at line 151 of file method_matcher.hpp.
|
inlineoverridevirtualnoexcept |
Is the specified method can be applied to a route?
true | if method can be applied to a route. |
false | if method can't be applied to a route. |
Implements restinio::router::method_matcher_t.
Reimplemented in restinio::router::impl::fixed_size_none_of_matcher_t< Size >.
Definition at line 161 of file method_matcher.hpp.
|
private |
Definition at line 141 of file method_matcher.hpp.