Coverage Report

Created: 2026-03-17 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/uWebSockets/src/MoveOnlyFunction.h
Line
Count
Source
1
/*
2
MIT License
3
4
Copyright (c) 2020 Oleg Fatkhiev
5
6
Permission is hereby granted, free of charge, to any person obtaining a copy
7
of this software and associated documentation files (the "Software"), to deal
8
in the Software without restriction, including without limitation the rights
9
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
copies of the Software, and to permit persons to whom the Software is
11
furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in all
14
copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
SOFTWARE.
23
*/
24
25
/* Sources fetched from https://github.com/ofats/any_invocable on 2021-02-19. */
26
27
#ifndef _ANY_INVOKABLE_H_
28
#define _ANY_INVOKABLE_H_
29
30
#include <functional>
31
32
#if !defined(__cpp_lib_move_only_function) || __cpp_lib_move_only_function < 202110L
33
34
#include <memory>
35
#include <type_traits>
36
37
// clang-format off
38
/*
39
namespace std {
40
  template<class Sig> class any_invocable; // never defined
41
42
  template<class R, class... ArgTypes>
43
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)> {
44
  public:
45
    using result_type = R;
46
47
    // SECTION.3, construct/copy/destroy
48
    any_invocable() noexcept;
49
    any_invocable(nullptr_t) noexcept;
50
    any_invocable(any_invocable&&) noexcept;
51
    template<class F> any_invocable(F&&);
52
53
    template<class T, class... Args>
54
      explicit any_invocable(in_place_type_t<T>, Args&&...);
55
    template<class T, class U, class... Args>
56
      explicit any_invocable(in_place_type_t<T>, initializer_list<U>, Args&&...);
57
58
    any_invocable& operator=(any_invocable&&) noexcept;
59
    any_invocable& operator=(nullptr_t) noexcept;
60
    template<class F> any_invocable& operator=(F&&);
61
    template<class F> any_invocable& operator=(reference_wrapper<F>) noexcept;
62
63
    ~any_invocable();
64
65
    // SECTION.4, any_invocable modifiers
66
    void swap(any_invocable&) noexcept;
67
68
    // SECTION.5, any_invocable capacity
69
    explicit operator bool() const noexcept;
70
71
    // SECTION.6, any_invocable invocation
72
    R operator()(ArgTypes...) cv ref noexcept(noex);
73
74
    // SECTION.7, null pointer comparisons
75
    friend bool operator==(const any_invocable&, nullptr_t) noexcept;
76
77
    // SECTION.8, specialized algorithms
78
    friend void swap(any_invocable&, any_invocable&) noexcept;
79
  };
80
}
81
*/
82
// clang-format on
83
84
namespace ofats {
85
86
namespace any_detail {
87
88
using buffer = std::aligned_storage_t<sizeof(void*) * 2, alignof(void*)>;
89
90
template <class T>
91
inline constexpr bool is_small_object_v =
92
    sizeof(T) <= sizeof(buffer) && alignof(buffer) % alignof(T) == 0 &&
93
    std::is_nothrow_move_constructible_v<T>;
94
95
union storage {
96
  void* ptr_ = nullptr;
97
  buffer buf_;
98
};
99
100
enum class action { destroy, move };
101
102
template <class R, class... ArgTypes>
103
struct handler_traits {
104
  template <class Derived>
105
  struct handler_base {
106
7.64M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
7.64M
      switch (act) {
108
6.75M
        case (action::destroy):
109
6.75M
          Derived::destroy(*current);
110
6.75M
          break;
111
887k
        case (action::move):
112
887k
          Derived::move(*current, *other);
113
887k
          break;
114
7.64M
      }
115
7.64M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
958k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
958k
      switch (act) {
108
958k
        case (action::destroy):
109
958k
          Derived::destroy(*current);
110
958k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
958k
      }
115
958k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
958k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
958k
      switch (act) {
108
958k
        case (action::destroy):
109
958k
          Derived::destroy(*current);
110
958k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
958k
      }
115
958k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::handler_base<ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
29.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
29.3k
      switch (act) {
108
11.7k
        case (action::destroy):
109
11.7k
          Derived::destroy(*current);
110
11.7k
          break;
111
17.6k
        case (action::move):
112
17.6k
          Derived::move(*current, *other);
113
17.6k
          break;
114
29.3k
      }
115
29.3k
    }
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.7k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
5.87k
        case (action::move):
112
5.87k
          Derived::move(*current, *other);
113
5.87k
          break;
114
11.7k
      }
115
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.7k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
5.87k
        case (action::move):
112
5.87k
          Derived::move(*current, *other);
113
5.87k
          break;
114
11.7k
      }
115
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.7k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
5.87k
        case (action::move):
112
5.87k
          Derived::move(*current, *other);
113
5.87k
          break;
114
11.7k
      }
115
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.6k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
11.7k
        case (action::move):
112
11.7k
          Derived::move(*current, *other);
113
11.7k
          break;
114
17.6k
      }
115
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
5.87k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
5.87k
      switch (act) {
108
5.87k
        case (action::destroy):
109
5.87k
          Derived::destroy(*current);
110
5.87k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
5.87k
      }
115
5.87k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
2.00M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
2.00M
      switch (act) {
108
2.00M
        case (action::destroy):
109
2.00M
          Derived::destroy(*current);
110
2.00M
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
2.00M
      }
115
2.00M
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
2.00M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
2.00M
      switch (act) {
108
2.00M
        case (action::destroy):
109
2.00M
          Derived::destroy(*current);
110
2.00M
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
2.00M
      }
115
2.00M
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::handler_base<ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
51.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
51.2k
      switch (act) {
108
17.0k
        case (action::destroy):
109
17.0k
          Derived::destroy(*current);
110
17.0k
          break;
111
34.1k
        case (action::move):
112
34.1k
          Derived::move(*current, *other);
113
34.1k
          break;
114
51.2k
      }
115
51.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
13.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
13.6k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
6.81k
        case (action::move):
112
6.81k
          Derived::move(*current, *other);
113
6.81k
          break;
114
13.6k
      }
115
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
13.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
13.6k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
6.81k
        case (action::move):
112
6.81k
          Derived::move(*current, *other);
113
6.81k
          break;
114
13.6k
      }
115
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
34.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
34.0k
      switch (act) {
108
13.6k
        case (action::destroy):
109
13.6k
          Derived::destroy(*current);
110
13.6k
          break;
111
20.4k
        case (action::move):
112
20.4k
          Derived::move(*current, *other);
113
20.4k
          break;
114
34.0k
      }
115
34.0k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
208k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
208k
      switch (act) {
108
68.4k
        case (action::destroy):
109
68.4k
          Derived::destroy(*current);
110
68.4k
          break;
111
140k
        case (action::move):
112
140k
          Derived::move(*current, *other);
113
140k
          break;
114
208k
      }
115
208k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
40.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
40.8k
      switch (act) {
108
13.6k
        case (action::destroy):
109
13.6k
          Derived::destroy(*current);
110
13.6k
          break;
111
27.2k
        case (action::move):
112
27.2k
          Derived::move(*current, *other);
113
27.2k
          break;
114
40.8k
      }
115
40.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
9.63k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
9.63k
      switch (act) {
108
2.78k
        case (action::destroy):
109
2.78k
          Derived::destroy(*current);
110
2.78k
          break;
111
6.85k
        case (action::move):
112
6.85k
          Derived::move(*current, *other);
113
6.85k
          break;
114
9.63k
      }
115
9.63k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
3.47k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
3.47k
      switch (act) {
108
1.50k
        case (action::destroy):
109
1.50k
          Derived::destroy(*current);
110
1.50k
          break;
111
1.97k
        case (action::move):
112
1.97k
          Derived::move(*current, *other);
113
1.97k
          break;
114
3.47k
      }
115
3.47k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
9.63k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
9.63k
      switch (act) {
108
2.78k
        case (action::destroy):
109
2.78k
          Derived::destroy(*current);
110
2.78k
          break;
111
6.85k
        case (action::move):
112
6.85k
          Derived::move(*current, *other);
113
6.85k
          break;
114
9.63k
      }
115
9.63k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
1.28k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
1.28k
      switch (act) {
108
1.28k
        case (action::destroy):
109
1.28k
          Derived::destroy(*current);
110
1.28k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
1.28k
      }
115
1.28k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
25.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
25.2k
      switch (act) {
108
7.96k
        case (action::destroy):
109
7.96k
          Derived::destroy(*current);
110
7.96k
          break;
111
17.3k
        case (action::move):
112
17.3k
          Derived::move(*current, *other);
113
17.3k
          break;
114
25.2k
      }
115
25.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.4k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
13.6k
        case (action::move):
112
13.6k
          Derived::move(*current, *other);
113
13.6k
          break;
114
20.4k
      }
115
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
6.81k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
6.81k
      switch (act) {
108
6.81k
        case (action::destroy):
109
6.81k
          Derived::destroy(*current);
110
6.81k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
6.81k
      }
115
6.81k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
14.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
14.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
7.03k
        case (action::move):
112
7.03k
          Derived::move(*current, *other);
113
7.03k
          break;
114
14.0k
      }
115
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
14.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
14.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
7.03k
        case (action::move):
112
7.03k
          Derived::move(*current, *other);
113
7.03k
          break;
114
14.0k
      }
115
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
35.1k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
35.1k
      switch (act) {
108
14.0k
        case (action::destroy):
109
14.0k
          Derived::destroy(*current);
110
14.0k
          break;
111
21.0k
        case (action::move):
112
21.0k
          Derived::move(*current, *other);
113
21.0k
          break;
114
35.1k
      }
115
35.1k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
42.1k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
42.1k
      switch (act) {
108
14.0k
        case (action::destroy):
109
14.0k
          Derived::destroy(*current);
110
14.0k
          break;
111
28.1k
        case (action::move):
112
28.1k
          Derived::move(*current, *other);
113
28.1k
          break;
114
42.1k
      }
115
42.1k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
50.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
50.4k
      switch (act) {
108
15.8k
        case (action::destroy):
109
15.8k
          Derived::destroy(*current);
110
15.8k
          break;
111
34.6k
        case (action::move):
112
34.6k
          Derived::move(*current, *other);
113
34.6k
          break;
114
50.4k
      }
115
50.4k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
21.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
21.0k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
14.0k
        case (action::move):
112
14.0k
          Derived::move(*current, *other);
113
14.0k
          break;
114
21.0k
      }
115
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
7.03k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
7.03k
      switch (act) {
108
7.03k
        case (action::destroy):
109
7.03k
          Derived::destroy(*current);
110
7.03k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
7.03k
      }
115
7.03k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
9.70k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
9.70k
      switch (act) {
108
3.23k
        case (action::destroy):
109
3.23k
          Derived::destroy(*current);
110
3.23k
          break;
111
6.46k
        case (action::move):
112
6.46k
          Derived::move(*current, *other);
113
6.46k
          break;
114
9.70k
      }
115
9.70k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
90.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
90.2k
      switch (act) {
108
23.6k
        case (action::destroy):
109
23.6k
          Derived::destroy(*current);
110
23.6k
          break;
111
66.5k
        case (action::move):
112
66.5k
          Derived::move(*current, *other);
113
66.5k
          break;
114
90.2k
      }
115
90.2k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
51.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
51.0k
      switch (act) {
108
23.6k
        case (action::destroy):
109
23.6k
          Derived::destroy(*current);
110
23.6k
          break;
111
27.3k
        case (action::move):
112
27.3k
          Derived::move(*current, *other);
113
27.3k
          break;
114
51.0k
      }
115
51.0k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
19.2k
        case (action::destroy):
109
19.2k
          Derived::destroy(*current);
110
19.2k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
19.2k
      }
115
19.2k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
3.23k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
3.23k
      switch (act) {
108
3.23k
        case (action::destroy):
109
3.23k
          Derived::destroy(*current);
110
3.23k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
3.23k
      }
115
3.23k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
12
    static void handle(action act, storage* current, storage* other = nullptr) {
107
12
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
12
        case (action::move):
112
12
          Derived::move(*current, *other);
113
12
          break;
114
12
      }
115
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
8
    static void handle(action act, storage* current, storage* other = nullptr) {
107
8
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
8
        case (action::move):
112
8
          Derived::move(*current, *other);
113
8
          break;
114
8
      }
115
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
4
    static void handle(action act, storage* current, storage* other = nullptr) {
107
4
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
4
        case (action::move):
112
4
          Derived::move(*current, *other);
113
4
          break;
114
4
      }
115
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
4
    static void handle(action act, storage* current, storage* other = nullptr) {
107
4
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
4
        case (action::move):
112
4
          Derived::move(*current, *other);
113
4
          break;
114
4
      }
115
4
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
159k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
159k
      switch (act) {
108
159k
        case (action::destroy):
109
159k
          Derived::destroy(*current);
110
159k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
159k
      }
115
159k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
159k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
159k
      switch (act) {
108
159k
        case (action::destroy):
109
159k
          Derived::destroy(*current);
110
159k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
159k
      }
115
159k
    }
116
  };
117
118
  template <class T>
119
  struct small_handler : handler_base<small_handler<T>> {
120
    template <class... Args>
121
7.18M
    static void create(storage& s, Args&&... args) {
122
7.18M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
7.18M
    }
void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
958k
    static void create(storage& s, Args&&... args) {
122
958k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
958k
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
958k
    static void create(storage& s, Args&&... args) {
122
958k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
958k
    }
Unexecuted instantiation: void ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::create<{lambda(unsigned long)#1}>(ofats::any_detail::storage&, {lambda(unsigned long)#1}&&)
void ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
11.7k
    static void create(storage& s, Args&&... args) {
122
11.7k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.7k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
11.7k
    static void create(storage& s, Args&&... args) {
122
11.7k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.7k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
11.7k
    static void create(storage& s, Args&&... args) {
122
11.7k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.7k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
17.6k
    static void create(storage& s, Args&&... args) {
122
17.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.6k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
5.87k
    static void create(storage& s, Args&&... args) {
122
5.87k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
5.87k
    }
void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
2.00M
    static void create(storage& s, Args&&... args) {
122
2.00M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
2.00M
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
2.00M
    static void create(storage& s, Args&&... args) {
122
2.00M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
2.00M
    }
Unexecuted instantiation: void ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::create<{lambda(unsigned long)#1}>(ofats::any_detail::storage&, {lambda(unsigned long)#1}&&)
void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
121
51.2k
    static void create(storage& s, Args&&... args) {
122
51.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
51.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
13.6k
    static void create(storage& s, Args&&... args) {
122
13.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
13.6k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
13.6k
    static void create(storage& s, Args&&... args) {
122
13.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
13.6k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
34.0k
    static void create(storage& s, Args&&... args) {
122
34.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
34.0k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
9.63k
    static void create(storage& s, Args&&... args) {
122
9.63k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
9.63k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
3.47k
    static void create(storage& s, Args&&... args) {
122
3.47k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
3.47k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
121
9.63k
    static void create(storage& s, Args&&... args) {
122
9.63k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
9.63k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
25.2k
    static void create(storage& s, Args&&... args) {
122
25.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
25.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::create<test()::$_7>(ofats::any_detail::storage&, test()::$_7&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::create<test()::$_8>(ofats::any_detail::storage&, test()::$_8&&)
Line
Count
Source
121
20.4k
    static void create(storage& s, Args&&... args) {
122
20.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::create<test()::$_9>(ofats::any_detail::storage&, test()::$_9&&)
Line
Count
Source
121
6.81k
    static void create(storage& s, Args&&... args) {
122
6.81k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
6.81k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
14.0k
    static void create(storage& s, Args&&... args) {
122
14.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
14.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
14.0k
    static void create(storage& s, Args&&... args) {
122
14.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
14.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
35.1k
    static void create(storage& s, Args&&... args) {
122
35.1k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
35.1k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::create<test()::$_7>(ofats::any_detail::storage&, test()::$_7&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::create<test()::$_8>(ofats::any_detail::storage&, test()::$_8&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::create<test()::$_9>(ofats::any_detail::storage&, test()::$_9&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::create<test()::$_10>(ofats::any_detail::storage&, test()::$_10&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::create<test()::$_11>(ofats::any_detail::storage&, test()::$_11&&)
Line
Count
Source
121
21.0k
    static void create(storage& s, Args&&... args) {
122
21.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
21.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::create<test()::$_12>(ofats::any_detail::storage&, test()::$_12&&)
Line
Count
Source
121
7.03k
    static void create(storage& s, Args&&... args) {
122
7.03k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
7.03k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
9.70k
    static void create(storage& s, Args&&... args) {
122
9.70k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
9.70k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
90.2k
    static void create(storage& s, Args&&... args) {
122
90.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
90.2k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
3.23k
    static void create(storage& s, Args&&... args) {
122
3.23k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
3.23k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
121
16
    static void create(storage& s, Args&&... args) {
122
16
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
16
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::create<{lambda(auto:1*)#2}>(ofats::any_detail::storage&, {lambda(auto:1*)#2}&&)
Line
Count
Source
121
12
    static void create(storage& s, Args&&... args) {
122
12
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
12
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::create<{lambda(auto:1*)#3}>(ofats::any_detail::storage&, {lambda(auto:1*)#3}&&)
Line
Count
Source
121
8
    static void create(storage& s, Args&&... args) {
122
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
8
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::create<{lambda(auto:1*)#4}>(ofats::any_detail::storage&, {lambda(auto:1*)#4}&&)
Line
Count
Source
121
8
    static void create(storage& s, Args&&... args) {
122
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
8
    }
Http.cpp:void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(void*, uWS::HttpRequest*)#1}>(ofats::any_detail::storage&, {lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
121
159k
    static void create(storage& s, Args&&... args) {
122
159k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
159k
    }
Http.cpp:void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
121
159k
    static void create(storage& s, Args&&... args) {
122
159k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
159k
    }
124
125
7.18M
    static void destroy(storage& s) noexcept {
126
7.18M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
7.18M
      value.~T();
128
7.18M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
958k
    static void destroy(storage& s) noexcept {
126
958k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
958k
      value.~T();
128
958k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
958k
    static void destroy(storage& s) noexcept {
126
958k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
958k
      value.~T();
128
958k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::destroy(ofats::any_detail::storage&)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.7k
    static void destroy(storage& s) noexcept {
126
11.7k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.7k
      value.~T();
128
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.7k
    static void destroy(storage& s) noexcept {
126
11.7k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.7k
      value.~T();
128
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.7k
    static void destroy(storage& s) noexcept {
126
11.7k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.7k
      value.~T();
128
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.6k
    static void destroy(storage& s) noexcept {
126
17.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.6k
      value.~T();
128
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
5.87k
    static void destroy(storage& s) noexcept {
126
5.87k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
5.87k
      value.~T();
128
5.87k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
2.00M
    static void destroy(storage& s) noexcept {
126
2.00M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
2.00M
      value.~T();
128
2.00M
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
2.00M
    static void destroy(storage& s) noexcept {
126
2.00M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
2.00M
      value.~T();
128
2.00M
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::destroy(ofats::any_detail::storage&)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
51.2k
    static void destroy(storage& s) noexcept {
126
51.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
51.2k
      value.~T();
128
51.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
13.6k
    static void destroy(storage& s) noexcept {
126
13.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
13.6k
      value.~T();
128
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
13.6k
    static void destroy(storage& s) noexcept {
126
13.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
13.6k
      value.~T();
128
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
34.0k
    static void destroy(storage& s) noexcept {
126
34.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
34.0k
      value.~T();
128
34.0k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
9.63k
    static void destroy(storage& s) noexcept {
126
9.63k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
9.63k
      value.~T();
128
9.63k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
3.47k
    static void destroy(storage& s) noexcept {
126
3.47k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
3.47k
      value.~T();
128
3.47k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
9.63k
    static void destroy(storage& s) noexcept {
126
9.63k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
9.63k
      value.~T();
128
9.63k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
25.2k
    static void destroy(storage& s) noexcept {
126
25.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
25.2k
      value.~T();
128
25.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.4k
    static void destroy(storage& s) noexcept {
126
20.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.4k
      value.~T();
128
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
6.81k
    static void destroy(storage& s) noexcept {
126
6.81k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
6.81k
      value.~T();
128
6.81k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
14.0k
    static void destroy(storage& s) noexcept {
126
14.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
14.0k
      value.~T();
128
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
14.0k
    static void destroy(storage& s) noexcept {
126
14.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
14.0k
      value.~T();
128
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
35.1k
    static void destroy(storage& s) noexcept {
126
35.1k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
35.1k
      value.~T();
128
35.1k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
21.0k
    static void destroy(storage& s) noexcept {
126
21.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
21.0k
      value.~T();
128
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
7.03k
    static void destroy(storage& s) noexcept {
126
7.03k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
7.03k
      value.~T();
128
7.03k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
9.70k
    static void destroy(storage& s) noexcept {
126
9.70k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
9.70k
      value.~T();
128
9.70k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
90.2k
    static void destroy(storage& s) noexcept {
126
90.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
90.2k
      value.~T();
128
90.2k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
3.23k
    static void destroy(storage& s) noexcept {
126
3.23k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
3.23k
      value.~T();
128
3.23k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
12
    static void destroy(storage& s) noexcept {
126
12
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
12
      value.~T();
128
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
8
    static void destroy(storage& s) noexcept {
126
8
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
8
      value.~T();
128
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
4
    static void destroy(storage& s) noexcept {
126
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
4
      value.~T();
128
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
4
    static void destroy(storage& s) noexcept {
126
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
4
      value.~T();
128
4
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
159k
    static void destroy(storage& s) noexcept {
126
159k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
159k
      value.~T();
128
159k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
159k
    static void destroy(storage& s) noexcept {
126
159k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
159k
      value.~T();
128
159k
    }
129
130
600k
    static void move(storage& dst, storage& src) noexcept {
131
600k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
600k
      destroy(src);
133
600k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.87k
    static void move(storage& dst, storage& src) noexcept {
131
5.87k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.87k
      destroy(src);
133
5.87k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.87k
    static void move(storage& dst, storage& src) noexcept {
131
5.87k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.87k
      destroy(src);
133
5.87k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.87k
    static void move(storage& dst, storage& src) noexcept {
131
5.87k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.87k
      destroy(src);
133
5.87k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.7k
    static void move(storage& dst, storage& src) noexcept {
131
11.7k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.7k
      destroy(src);
133
11.7k
    }
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
34.1k
    static void move(storage& dst, storage& src) noexcept {
131
34.1k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
34.1k
      destroy(src);
133
34.1k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.81k
    static void move(storage& dst, storage& src) noexcept {
131
6.81k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.81k
      destroy(src);
133
6.81k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.81k
    static void move(storage& dst, storage& src) noexcept {
131
6.81k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.81k
      destroy(src);
133
6.81k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
20.4k
    static void move(storage& dst, storage& src) noexcept {
131
20.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
20.4k
      destroy(src);
133
20.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.85k
    static void move(storage& dst, storage& src) noexcept {
131
6.85k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.85k
      destroy(src);
133
6.85k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>)
Line
Count
Source
130
1.97k
    static void move(storage& dst, storage& src) noexcept {
131
1.97k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
1.97k
      destroy(src);
133
1.97k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.85k
    static void move(storage& dst, storage& src) noexcept {
131
6.85k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.85k
      destroy(src);
133
6.85k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
17.3k
    static void move(storage& dst, storage& src) noexcept {
131
17.3k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
17.3k
      destroy(src);
133
17.3k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.6k
    static void move(storage& dst, storage& src) noexcept {
131
13.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.6k
      destroy(src);
133
13.6k
    }
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
7.03k
    static void move(storage& dst, storage& src) noexcept {
131
7.03k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
7.03k
      destroy(src);
133
7.03k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
7.03k
    static void move(storage& dst, storage& src) noexcept {
131
7.03k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
7.03k
      destroy(src);
133
7.03k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
21.0k
    static void move(storage& dst, storage& src) noexcept {
131
21.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
21.0k
      destroy(src);
133
21.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
14.0k
    static void move(storage& dst, storage& src) noexcept {
131
14.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
14.0k
      destroy(src);
133
14.0k
    }
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
6.46k
    static void move(storage& dst, storage& src) noexcept {
131
6.46k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.46k
      destroy(src);
133
6.46k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
66.5k
    static void move(storage& dst, storage& src) noexcept {
131
66.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
66.5k
      destroy(src);
133
66.5k
    }
Unexecuted instantiation: AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
12
    static void move(storage& dst, storage& src) noexcept {
131
12
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12
      destroy(src);
133
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
8
    static void move(storage& dst, storage& src) noexcept {
131
8
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
8
      destroy(src);
133
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
4
    static void move(storage& dst, storage& src) noexcept {
131
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
4
      destroy(src);
133
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
4
    static void move(storage& dst, storage& src) noexcept {
131
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
4
      destroy(src);
133
4
    }
Unexecuted instantiation: Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Unexecuted instantiation: Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
134
135
17.2M
    static R call(storage& s, ArgTypes... args) {
136
17.2M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
17.2M
                         std::forward<ArgTypes>(args)...);
138
17.2M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
118k
    static R call(storage& s, ArgTypes... args) {
136
118k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
118k
                         std::forward<ArgTypes>(args)...);
138
118k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
135
17.8k
    static R call(storage& s, ArgTypes... args) {
136
17.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
17.8k
                         std::forward<ArgTypes>(args)...);
138
17.8k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::call(ofats::any_detail::storage&, unsigned long)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
135
16.9k
    static R call(storage& s, ArgTypes... args) {
136
16.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
16.9k
                         std::forward<ArgTypes>(args)...);
138
16.9k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.05M
    static R call(storage& s, ArgTypes... args) {
136
2.05M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.05M
                         std::forward<ArgTypes>(args)...);
138
2.05M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.05M
    static R call(storage& s, ArgTypes... args) {
136
2.05M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.05M
                         std::forward<ArgTypes>(args)...);
138
2.05M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
5.87k
    static R call(storage& s, ArgTypes... args) {
136
5.87k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
5.87k
                         std::forward<ArgTypes>(args)...);
138
5.87k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
135
101k
    static R call(storage& s, ArgTypes... args) {
136
101k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
101k
                         std::forward<ArgTypes>(args)...);
138
101k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
1.01M
    static R call(storage& s, ArgTypes... args) {
136
1.01M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.01M
                         std::forward<ArgTypes>(args)...);
138
1.01M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
135
7.11k
    static R call(storage& s, ArgTypes... args) {
136
7.11k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.11k
                         std::forward<ArgTypes>(args)...);
138
7.11k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
4.56k
    static R call(storage& s, ArgTypes... args) {
136
4.56k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
4.56k
                         std::forward<ArgTypes>(args)...);
138
4.56k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
571
    static R call(storage& s, ArgTypes... args) {
136
571
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
571
                         std::forward<ArgTypes>(args)...);
138
571
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
101k
    static R call(storage& s, ArgTypes... args) {
136
101k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
101k
                         std::forward<ArgTypes>(args)...);
138
101k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
5.87k
    static R call(storage& s, ArgTypes... args) {
136
5.87k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
5.87k
                         std::forward<ArgTypes>(args)...);
138
5.87k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
297k
    static R call(storage& s, ArgTypes... args) {
136
297k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
297k
                         std::forward<ArgTypes>(args)...);
138
297k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
135
119k
    static R call(storage& s, ArgTypes... args) {
136
119k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
119k
                         std::forward<ArgTypes>(args)...);
138
119k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::call(ofats::any_detail::storage&, unsigned long)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
49.0k
    static R call(storage& s, ArgTypes... args) {
136
49.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
49.0k
                         std::forward<ArgTypes>(args)...);
138
49.0k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.71M
    static R call(storage& s, ArgTypes... args) {
136
2.71M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.71M
                         std::forward<ArgTypes>(args)...);
138
2.71M
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.71M
    static R call(storage& s, ArgTypes... args) {
136
2.71M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.71M
                         std::forward<ArgTypes>(args)...);
138
2.71M
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
13.6k
    static R call(storage& s, ArgTypes... args) {
136
13.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
13.6k
                         std::forward<ArgTypes>(args)...);
138
13.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
9.92k
    static R call(storage& s, ArgTypes... args) {
136
9.92k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
9.92k
                         std::forward<ArgTypes>(args)...);
138
9.92k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
2.78k
    static R call(storage& s, ArgTypes... args) {
136
2.78k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.78k
                         std::forward<ArgTypes>(args)...);
138
2.78k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
1.50k
    static R call(storage& s, ArgTypes... args) {
136
1.50k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.50k
                         std::forward<ArgTypes>(args)...);
138
1.50k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
1.34k
    static R call(storage& s, ArgTypes... args) {
136
1.34k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.34k
                         std::forward<ArgTypes>(args)...);
138
1.34k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
135
34.6k
    static R call(storage& s, ArgTypes... args) {
136
34.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
34.6k
                         std::forward<ArgTypes>(args)...);
138
34.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
2.20k
    static R call(storage& s, ArgTypes... args) {
136
2.20k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.20k
                         std::forward<ArgTypes>(args)...);
138
2.20k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
44.2k
    static R call(storage& s, ArgTypes... args) {
136
44.2k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
44.2k
                         std::forward<ArgTypes>(args)...);
138
44.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
19.2k
    static R call(storage& s, ArgTypes... args) {
136
19.2k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
19.2k
                         std::forward<ArgTypes>(args)...);
138
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
2.83k
    static R call(storage& s, ArgTypes... args) {
136
2.83k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.83k
                         std::forward<ArgTypes>(args)...);
138
2.83k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
7.96k
    static R call(storage& s, ArgTypes... args) {
136
7.96k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.96k
                         std::forward<ArgTypes>(args)...);
138
7.96k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
4.99k
    static R call(storage& s, ArgTypes... args) {
136
4.99k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
4.99k
                         std::forward<ArgTypes>(args)...);
138
4.99k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
1.67k
    static R call(storage& s, ArgTypes... args) {
136
1.67k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.67k
                         std::forward<ArgTypes>(args)...);
138
1.67k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
44.2k
    static R call(storage& s, ArgTypes... args) {
136
44.2k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
44.2k
                         std::forward<ArgTypes>(args)...);
138
44.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
6.81k
    static R call(storage& s, ArgTypes... args) {
136
6.81k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
6.81k
                         std::forward<ArgTypes>(args)...);
138
6.81k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.44M
    static R call(storage& s, ArgTypes... args) {
136
2.44M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.44M
                         std::forward<ArgTypes>(args)...);
138
2.44M
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.44M
    static R call(storage& s, ArgTypes... args) {
136
2.44M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.44M
                         std::forward<ArgTypes>(args)...);
138
2.44M
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
14.0k
    static R call(storage& s, ArgTypes... args) {
136
14.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
14.0k
                         std::forward<ArgTypes>(args)...);
138
14.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
131k
    static R call(storage& s, ArgTypes... args) {
136
131k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
131k
                         std::forward<ArgTypes>(args)...);
138
131k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
136k
    static R call(storage& s, ArgTypes... args) {
136
136k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
136k
                         std::forward<ArgTypes>(args)...);
138
136k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
26.0k
    static R call(storage& s, ArgTypes... args) {
136
26.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
26.0k
                         std::forward<ArgTypes>(args)...);
138
26.0k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
919
    static R call(storage& s, ArgTypes... args) {
136
919
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
919
                         std::forward<ArgTypes>(args)...);
138
919
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
436
    static R call(storage& s, ArgTypes... args) {
136
436
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
436
                         std::forward<ArgTypes>(args)...);
138
436
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
131k
    static R call(storage& s, ArgTypes... args) {
136
131k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
131k
                         std::forward<ArgTypes>(args)...);
138
131k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
31.5k
    static R call(storage& s, ArgTypes... args) {
136
31.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
31.5k
                         std::forward<ArgTypes>(args)...);
138
31.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
14.5k
    static R call(storage& s, ArgTypes... args) {
136
14.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
14.5k
                         std::forward<ArgTypes>(args)...);
138
14.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
3.67k
    static R call(storage& s, ArgTypes... args) {
136
3.67k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.67k
                         std::forward<ArgTypes>(args)...);
138
3.67k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
15.8k
    static R call(storage& s, ArgTypes... args) {
136
15.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
15.8k
                         std::forward<ArgTypes>(args)...);
138
15.8k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
1.76k
    static R call(storage& s, ArgTypes... args) {
136
1.76k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.76k
                         std::forward<ArgTypes>(args)...);
138
1.76k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
31.5k
    static R call(storage& s, ArgTypes... args) {
136
31.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
31.5k
                         std::forward<ArgTypes>(args)...);
138
31.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
7.03k
    static R call(storage& s, ArgTypes... args) {
136
7.03k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.03k
                         std::forward<ArgTypes>(args)...);
138
7.03k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
23.6k
    static R call(storage& s, ArgTypes... args) {
136
23.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
23.6k
                         std::forward<ArgTypes>(args)...);
138
23.6k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
4.43k
    static R call(storage& s, ArgTypes... args) {
136
4.43k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
4.43k
                         std::forward<ArgTypes>(args)...);
138
4.43k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
3.23k
    static R call(storage& s, ArgTypes... args) {
136
3.23k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.23k
                         std::forward<ArgTypes>(args)...);
138
3.23k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
7.33k
    static R call(storage& s, ArgTypes... args) {
136
7.33k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.33k
                         std::forward<ArgTypes>(args)...);
138
7.33k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
1.90k
    static R call(storage& s, ArgTypes... args) {
136
1.90k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.90k
                         std::forward<ArgTypes>(args)...);
138
1.90k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
198
    static R call(storage& s, ArgTypes... args) {
136
198
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
198
                         std::forward<ArgTypes>(args)...);
138
198
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
15.7k
    static R call(storage& s, ArgTypes... args) {
136
15.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
15.7k
                         std::forward<ArgTypes>(args)...);
138
15.7k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
26.4k
    static R call(storage& s, ArgTypes... args) {
136
26.4k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
26.4k
                         std::forward<ArgTypes>(args)...);
138
26.4k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
135
89.9k
    static R call(storage& s, ArgTypes... args) {
136
89.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
89.9k
                         std::forward<ArgTypes>(args)...);
138
89.9k
    }
139
  };
140
141
  template <class T>
142
  struct large_handler : handler_base<large_handler<T>> {
143
    template <class... Args>
144
173k
    static void create(storage& s, Args&&... args) {
145
173k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
173k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
144
11.7k
    static void create(storage& s, Args&&... args) {
145
11.7k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
11.7k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
5.87k
    static void create(storage& s, Args&&... args) {
145
5.87k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
5.87k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
144
68.4k
    static void create(storage& s, Args&&... args) {
145
68.4k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
68.4k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
13.6k
    static void create(storage& s, Args&&... args) {
145
13.6k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
13.6k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::create<{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
144
1.28k
    static void create(storage& s, Args&&... args) {
145
1.28k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
1.28k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
14.0k
    static void create(storage& s, Args&&... args) {
145
14.0k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
14.0k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
144
15.8k
    static void create(storage& s, Args&&... args) {
145
15.8k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
15.8k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::create<{lambda()#2}>(ofats::any_detail::storage&, {lambda()#2}&&)
Line
Count
Source
144
23.6k
    static void create(storage& s, Args&&... args) {
145
23.6k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
23.6k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::create<{lambda()#2}>(ofats::any_detail::storage&, {lambda()#2}&&)
Line
Count
Source
144
19.2k
    static void create(storage& s, Args&&... args) {
145
19.2k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
19.2k
    }
147
148
173k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
11.7k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
5.87k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
68.4k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
13.6k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
1.28k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
14.0k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
15.8k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
23.6k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
19.2k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
149
150
287k
    static void move(storage& dst, storage& src) noexcept {
151
287k
      dst.ptr_ = src.ptr_;
152
287k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
17.6k
    static void move(storage& dst, storage& src) noexcept {
151
17.6k
      dst.ptr_ = src.ptr_;
152
17.6k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
11.7k
    static void move(storage& dst, storage& src) noexcept {
151
11.7k
      dst.ptr_ = src.ptr_;
152
11.7k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
140k
    static void move(storage& dst, storage& src) noexcept {
151
140k
      dst.ptr_ = src.ptr_;
152
140k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
27.2k
    static void move(storage& dst, storage& src) noexcept {
151
27.2k
      dst.ptr_ = src.ptr_;
152
27.2k
    }
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>)
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
28.1k
    static void move(storage& dst, storage& src) noexcept {
151
28.1k
      dst.ptr_ = src.ptr_;
152
28.1k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
34.6k
    static void move(storage& dst, storage& src) noexcept {
151
34.6k
      dst.ptr_ = src.ptr_;
152
34.6k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
27.3k
    static void move(storage& dst, storage& src) noexcept {
151
27.3k
      dst.ptr_ = src.ptr_;
152
27.3k
    }
Unexecuted instantiation: AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>)
153
154
817k
    static R call(storage& s, ArgTypes... args) {
155
817k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
817k
                         std::forward<ArgTypes>(args)...);
157
817k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
154
121k
    static R call(storage& s, ArgTypes... args) {
155
121k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
121k
                         std::forward<ArgTypes>(args)...);
157
121k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
154
104k
    static R call(storage& s, ArgTypes... args) {
155
104k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
104k
                         std::forward<ArgTypes>(args)...);
157
104k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
154
311k
    static R call(storage& s, ArgTypes... args) {
155
311k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
311k
                         std::forward<ArgTypes>(args)...);
157
311k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
154
56.5k
    static R call(storage& s, ArgTypes... args) {
155
56.5k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
56.5k
                         std::forward<ArgTypes>(args)...);
157
56.5k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
1.28k
    static R call(storage& s, ArgTypes... args) {
155
1.28k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
1.28k
                         std::forward<ArgTypes>(args)...);
157
1.28k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
154
167k
    static R call(storage& s, ArgTypes... args) {
155
167k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
167k
                         std::forward<ArgTypes>(args)...);
157
167k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
12.1k
    static R call(storage& s, ArgTypes... args) {
155
12.1k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
12.1k
                         std::forward<ArgTypes>(args)...);
157
12.1k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
23.0k
    static R call(storage& s, ArgTypes... args) {
155
23.0k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
23.0k
                         std::forward<ArgTypes>(args)...);
157
23.0k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
19.2k
    static R call(storage& s, ArgTypes... args) {
155
19.2k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
19.2k
                         std::forward<ArgTypes>(args)...);
157
19.2k
    }
158
  };
159
160
  template <class T>
161
  using handler = std::conditional_t<is_small_object_v<T>, small_handler<T>,
162
                                     large_handler<T>>;
163
};
164
165
template <class T>
166
struct is_in_place_type : std::false_type {};
167
168
template <class T>
169
struct is_in_place_type<std::in_place_type_t<T>> : std::true_type {};
170
171
template <class T>
172
inline constexpr auto is_in_place_type_v = is_in_place_type<T>::value;
173
174
template <class R, bool is_noexcept, class... ArgTypes>
175
class any_invocable_impl {
176
  template <class T>
177
  using handler =
178
      typename any_detail::handler_traits<R, ArgTypes...>::template handler<T>;
179
180
  using storage = any_detail::storage;
181
  using action = any_detail::action;
182
  using handle_func = void (*)(any_detail::action, any_detail::storage*,
183
                               any_detail::storage*);
184
  using call_func = R (*)(any_detail::storage&, ArgTypes...);
185
186
 public:
187
  using result_type = R;
188
189
20.5M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl()
Line
Count
Source
189
22.9k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl()
Line
Count
Source
189
4.58M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl()
Line
Count
Source
189
4.71M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl()
Line
Count
Source
189
4.58M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
3.11M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl()
Line
Count
Source
189
3.11M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
11.7k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
11.7k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::any_invocable_impl()
Line
Count
Source
189
39.4k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
11.7k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
5.87k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
11.7k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
5.87k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::any_invocable_impl()
Line
Count
Source
189
22.9k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
68.4k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
68.4k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
13.6k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
6.81k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
13.6k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
6.81k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
28.1k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
14.0k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
28.1k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
14.0k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
16
  any_invocable_impl() noexcept = default;
190
1.23M
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
5.87k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
17.6k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.7k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
1.28k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
408k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
408k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.7k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
5.87k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.7k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
27.6k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
40.8k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
47.6k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
40.8k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
27.2k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
20.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
6.81k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
42.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
28.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
28.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
14.0k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
28.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
191
1.39M
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
1.39M
    if (rhs.handle_) {
193
676k
      handle_ = rhs.handle_;
194
676k
      handle_(action::move, &storage_, &rhs.storage_);
195
676k
      call_ = rhs.call_;
196
676k
      rhs.handle_ = nullptr;
197
676k
    }
198
1.39M
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&&)
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&&)
Line
Count
Source
191
17.6k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.6k
    if (rhs.handle_) {
193
17.6k
      handle_ = rhs.handle_;
194
17.6k
      handle_(action::move, &storage_, &rhs.storage_);
195
17.6k
      call_ = rhs.call_;
196
17.6k
      rhs.handle_ = nullptr;
197
17.6k
    }
198
17.6k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>&&)
Line
Count
Source
191
23.5k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
23.5k
    if (rhs.handle_) {
193
23.5k
      handle_ = rhs.handle_;
194
23.5k
      handle_(action::move, &storage_, &rhs.storage_);
195
23.5k
      call_ = rhs.call_;
196
23.5k
      rhs.handle_ = nullptr;
197
23.5k
    }
198
23.5k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>&&)
Line
Count
Source
191
39.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
39.4k
    if (rhs.handle_) {
193
39.4k
      handle_ = rhs.handle_;
194
39.4k
      handle_(action::move, &storage_, &rhs.storage_);
195
39.4k
      call_ = rhs.call_;
196
39.4k
      rhs.handle_ = nullptr;
197
39.4k
    }
198
39.4k
  }
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false>&&)
Line
Count
Source
191
155k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
155k
    if (rhs.handle_) {
193
155k
      handle_ = rhs.handle_;
194
155k
      handle_(action::move, &storage_, &rhs.storage_);
195
155k
      call_ = rhs.call_;
196
155k
      rhs.handle_ = nullptr;
197
155k
    }
198
155k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
35.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
35.2k
    if (rhs.handle_) {
193
11.7k
      handle_ = rhs.handle_;
194
11.7k
      handle_(action::move, &storage_, &rhs.storage_);
195
11.7k
      call_ = rhs.call_;
196
11.7k
      rhs.handle_ = nullptr;
197
11.7k
    }
198
35.2k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
35.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
35.2k
    if (rhs.handle_) {
193
5.87k
      handle_ = rhs.handle_;
194
5.87k
      handle_(action::move, &storage_, &rhs.storage_);
195
5.87k
      call_ = rhs.call_;
196
5.87k
      rhs.handle_ = nullptr;
197
5.87k
    }
198
35.2k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
17.6k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.6k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
17.6k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
17.6k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.6k
    if (rhs.handle_) {
193
5.87k
      handle_ = rhs.handle_;
194
5.87k
      handle_(action::move, &storage_, &rhs.storage_);
195
5.87k
      call_ = rhs.call_;
196
5.87k
      rhs.handle_ = nullptr;
197
5.87k
    }
198
17.6k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
35.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
35.2k
    if (rhs.handle_) {
193
11.7k
      handle_ = rhs.handle_;
194
11.7k
      handle_(action::move, &storage_, &rhs.storage_);
195
11.7k
      call_ = rhs.call_;
196
11.7k
      rhs.handle_ = nullptr;
197
11.7k
    }
198
35.2k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>&&)
Line
Count
Source
191
11.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
11.7k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
11.7k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
81.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.7k
    if (rhs.handle_) {
193
13.6k
      handle_ = rhs.handle_;
194
13.6k
      handle_(action::move, &storage_, &rhs.storage_);
195
13.6k
      call_ = rhs.call_;
196
13.6k
      rhs.handle_ = nullptr;
197
13.6k
    }
198
81.7k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
81.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.7k
    if (rhs.handle_) {
193
6.81k
      handle_ = rhs.handle_;
194
6.81k
      handle_(action::move, &storage_, &rhs.storage_);
195
6.81k
      call_ = rhs.call_;
196
6.81k
      rhs.handle_ = nullptr;
197
6.81k
    }
198
81.7k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
40.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
40.8k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
40.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
40.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
40.8k
    if (rhs.handle_) {
193
6.81k
      handle_ = rhs.handle_;
194
6.81k
      handle_(action::move, &storage_, &rhs.storage_);
195
6.81k
      call_ = rhs.call_;
196
6.81k
      rhs.handle_ = nullptr;
197
6.81k
    }
198
40.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
81.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.7k
    if (rhs.handle_) {
193
13.6k
      handle_ = rhs.handle_;
194
13.6k
      handle_(action::move, &storage_, &rhs.storage_);
195
13.6k
      call_ = rhs.call_;
196
13.6k
      rhs.handle_ = nullptr;
197
13.6k
    }
198
81.7k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&&)
Line
Count
Source
191
140k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
140k
    if (rhs.handle_) {
193
140k
      handle_ = rhs.handle_;
194
140k
      handle_(action::move, &storage_, &rhs.storage_);
195
140k
      call_ = rhs.call_;
196
140k
      rhs.handle_ = nullptr;
197
140k
    }
198
140k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>&&)
Line
Count
Source
191
136k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
136k
    if (rhs.handle_) {
193
136k
      handle_ = rhs.handle_;
194
136k
      handle_(action::move, &storage_, &rhs.storage_);
195
136k
      call_ = rhs.call_;
196
136k
      rhs.handle_ = nullptr;
197
136k
    }
198
136k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>&&)
Line
Count
Source
191
55.3k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
55.3k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
55.3k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&&)
Line
Count
Source
191
2.78k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
2.78k
    if (rhs.handle_) {
193
2.78k
      handle_ = rhs.handle_;
194
2.78k
      handle_(action::move, &storage_, &rhs.storage_);
195
2.78k
      call_ = rhs.call_;
196
2.78k
      rhs.handle_ = nullptr;
197
2.78k
    }
198
2.78k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, char const*>&&)
Line
Count
Source
191
6.81k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
6.81k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
6.81k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
84.3k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
84.3k
    if (rhs.handle_) {
193
28.1k
      handle_ = rhs.handle_;
194
28.1k
      handle_(action::move, &storage_, &rhs.storage_);
195
28.1k
      call_ = rhs.call_;
196
28.1k
      rhs.handle_ = nullptr;
197
28.1k
    }
198
84.3k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
84.3k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
84.3k
    if (rhs.handle_) {
193
14.0k
      handle_ = rhs.handle_;
194
14.0k
      handle_(action::move, &storage_, &rhs.storage_);
195
14.0k
      call_ = rhs.call_;
196
14.0k
      rhs.handle_ = nullptr;
197
14.0k
    }
198
84.3k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
42.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
42.1k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
42.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
42.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
42.1k
    if (rhs.handle_) {
193
14.0k
      handle_ = rhs.handle_;
194
14.0k
      handle_(action::move, &storage_, &rhs.storage_);
195
14.0k
      call_ = rhs.call_;
196
14.0k
      rhs.handle_ = nullptr;
197
14.0k
    }
198
42.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
84.3k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
84.3k
    if (rhs.handle_) {
193
28.1k
      handle_ = rhs.handle_;
194
28.1k
      handle_(action::move, &storage_, &rhs.storage_);
195
28.1k
      call_ = rhs.call_;
196
28.1k
      rhs.handle_ = nullptr;
197
28.1k
    }
198
84.3k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&&)
Line
Count
Source
191
28
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
28
    if (rhs.handle_) {
193
28
      handle_ = rhs.handle_;
194
28
      handle_(action::move, &storage_, &rhs.storage_);
195
28
      call_ = rhs.call_;
196
28
      rhs.handle_ = nullptr;
197
28
    }
198
28
  }
199
200
304k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
304k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
304k
    return *this;
203
304k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator=(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&&)
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&&)
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
11.7k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.7k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.7k
    return *this;
203
11.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
11.7k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.7k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.7k
    return *this;
203
11.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
5.87k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
5.87k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
5.87k
    return *this;
203
5.87k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
5.87k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
5.87k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
5.87k
    return *this;
203
5.87k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
11.7k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.7k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.7k
    return *this;
203
11.7k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
27.2k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.2k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.2k
    return *this;
203
27.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
27.2k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.2k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.2k
    return *this;
203
27.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
13.6k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
13.6k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
13.6k
    return *this;
203
13.6k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
13.6k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
13.6k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
13.6k
    return *this;
203
13.6k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
27.2k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.2k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.2k
    return *this;
203
27.2k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&&)
ofats::any_detail::any_invocable_impl<void, false>::operator=(ofats::any_detail::any_invocable_impl<void, false>&&)
Line
Count
Source
200
26.4k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
26.4k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
26.4k
    return *this;
203
26.4k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::operator=(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&&)
Line
Count
Source
200
2.78k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
2.78k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
2.78k
    return *this;
203
2.78k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::operator=(ofats::any_detail::any_invocable_impl<void, false, char const*>&&)
Line
Count
Source
200
6.81k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
6.81k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
6.81k
    return *this;
203
6.81k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
28.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
28.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
28.1k
    return *this;
203
28.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
28.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
28.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
28.1k
    return *this;
203
28.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
14.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
14.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
14.0k
    return *this;
203
14.0k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
14.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
14.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
14.0k
    return *this;
203
14.0k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
28.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
28.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
28.1k
    return *this;
203
28.1k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&&)
204
  any_invocable_impl& operator=(std::nullptr_t) noexcept {
205
    destroy();
206
    return *this;
207
  }
208
209
23.1M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::~any_invocable_impl()
Line
Count
Source
209
22.9k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
29.3k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
29.3k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
58.7k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
58.7k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
58.7k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::~any_invocable_impl()
Line
Count
Source
209
17.6k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false>::~any_invocable_impl()
Line
Count
Source
209
5.27M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::~any_invocable_impl()
Line
Count
Source
209
78.8k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
29.3k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, char const*>::~any_invocable_impl()
Line
Count
Source
209
36.5k
  ~any_invocable_impl() { destroy(); }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::~any_invocable_impl()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::~any_invocable_impl()
Line
Count
Source
209
4.58M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::~any_invocable_impl()
Line
Count
Source
209
4.98M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
3.11M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::~any_invocable_impl()
Line
Count
Source
209
3.11M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
35.2k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
68.1k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
68.1k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
136k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
136k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
136k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::~any_invocable_impl()
Line
Count
Source
209
83.0k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
205k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
208k
  ~any_invocable_impl() { destroy(); }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::~any_invocable_impl()
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
70.3k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
70.3k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
140k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
140k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
140k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
28
  ~any_invocable_impl() { destroy(); }
210
211
1.31M
  void swap(any_invocable_impl& rhs) noexcept {
212
1.31M
    if (handle_) {
213
189k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
189k
      } else {
221
189k
        rhs.swap(*this);
222
189k
      }
223
1.12M
    } else if (rhs.handle_) {
224
211k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
211k
      handle_ = rhs.handle_;
226
211k
      call_ = rhs.call_;
227
211k
      rhs.handle_ = nullptr;
228
211k
    }
229
1.31M
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::swap(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&)
Line
Count
Source
211
6.85k
  void swap(any_invocable_impl& rhs) noexcept {
212
6.85k
    if (handle_) {
213
2.78k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
2.78k
      } else {
221
2.78k
        rhs.swap(*this);
222
2.78k
      }
223
4.06k
    } else if (rhs.handle_) {
224
4.06k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
4.06k
      handle_ = rhs.handle_;
226
4.06k
      call_ = rhs.call_;
227
4.06k
      rhs.handle_ = nullptr;
228
4.06k
    }
229
6.85k
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::swap(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&)
Line
Count
Source
211
408k
  void swap(any_invocable_impl& rhs) noexcept {
212
408k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
408k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
408k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&)
ofats::any_detail::any_invocable_impl<void, false>::swap(ofats::any_detail::any_invocable_impl<void, false>&)
Line
Count
Source
211
461k
  void swap(any_invocable_impl& rhs) noexcept {
212
461k
    if (handle_) {
213
26.4k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
26.4k
      } else {
221
26.4k
        rhs.swap(*this);
222
26.4k
      }
223
434k
    } else if (rhs.handle_) {
224
46.9k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
46.9k
      handle_ = rhs.handle_;
226
46.9k
      call_ = rhs.call_;
227
46.9k
      rhs.handle_ = nullptr;
228
46.9k
    }
229
461k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&)
Line
Count
Source
211
23.5k
  void swap(any_invocable_impl& rhs) noexcept {
212
23.5k
    if (handle_) {
213
11.7k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
11.7k
      } else {
221
11.7k
        rhs.swap(*this);
222
11.7k
      }
223
11.7k
    } else if (rhs.handle_) {
224
11.7k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
11.7k
      handle_ = rhs.handle_;
226
11.7k
      call_ = rhs.call_;
227
11.7k
      rhs.handle_ = nullptr;
228
11.7k
    }
229
23.5k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
17.6k
  void swap(any_invocable_impl& rhs) noexcept {
212
17.6k
    if (handle_) {
213
5.87k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
5.87k
      } else {
221
5.87k
        rhs.swap(*this);
222
5.87k
      }
223
11.7k
    } else if (rhs.handle_) {
224
5.87k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
5.87k
      handle_ = rhs.handle_;
226
5.87k
      call_ = rhs.call_;
227
5.87k
      rhs.handle_ = nullptr;
228
5.87k
    }
229
17.6k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
5.87k
  void swap(any_invocable_impl& rhs) noexcept {
212
5.87k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
5.87k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
5.87k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
11.7k
  void swap(any_invocable_impl& rhs) noexcept {
212
11.7k
    if (handle_) {
213
5.87k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
5.87k
      } else {
221
5.87k
        rhs.swap(*this);
222
5.87k
      }
223
5.87k
    } else if (rhs.handle_) {
224
5.87k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
5.87k
      handle_ = rhs.handle_;
226
5.87k
      call_ = rhs.call_;
227
5.87k
      rhs.handle_ = nullptr;
228
5.87k
    }
229
11.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
23.5k
  void swap(any_invocable_impl& rhs) noexcept {
212
23.5k
    if (handle_) {
213
11.7k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
11.7k
      } else {
221
11.7k
        rhs.swap(*this);
222
11.7k
      }
223
11.7k
    } else if (rhs.handle_) {
224
11.7k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
11.7k
      handle_ = rhs.handle_;
226
11.7k
      call_ = rhs.call_;
227
11.7k
      rhs.handle_ = nullptr;
228
11.7k
    }
229
23.5k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&)
Line
Count
Source
211
40.8k
  void swap(any_invocable_impl& rhs) noexcept {
212
40.8k
    if (handle_) {
213
13.6k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
13.6k
      } else {
221
13.6k
        rhs.swap(*this);
222
13.6k
      }
223
27.2k
    } else if (rhs.handle_) {
224
13.6k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
13.6k
      handle_ = rhs.handle_;
226
13.6k
      call_ = rhs.call_;
227
13.6k
      rhs.handle_ = nullptr;
228
13.6k
    }
229
40.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
34.0k
  void swap(any_invocable_impl& rhs) noexcept {
212
34.0k
    if (handle_) {
213
6.81k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
6.81k
      } else {
221
6.81k
        rhs.swap(*this);
222
6.81k
      }
223
27.2k
    } else if (rhs.handle_) {
224
6.81k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
6.81k
      handle_ = rhs.handle_;
226
6.81k
      call_ = rhs.call_;
227
6.81k
      rhs.handle_ = nullptr;
228
6.81k
    }
229
34.0k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
13.6k
  void swap(any_invocable_impl& rhs) noexcept {
212
13.6k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
13.6k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
13.6k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
20.4k
  void swap(any_invocable_impl& rhs) noexcept {
212
20.4k
    if (handle_) {
213
6.81k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
6.81k
      } else {
221
6.81k
        rhs.swap(*this);
222
6.81k
      }
223
13.6k
    } else if (rhs.handle_) {
224
6.81k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
6.81k
      handle_ = rhs.handle_;
226
6.81k
      call_ = rhs.call_;
227
6.81k
      rhs.handle_ = nullptr;
228
6.81k
    }
229
20.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
40.8k
  void swap(any_invocable_impl& rhs) noexcept {
212
40.8k
    if (handle_) {
213
13.6k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
13.6k
      } else {
221
13.6k
        rhs.swap(*this);
222
13.6k
      }
223
27.2k
    } else if (rhs.handle_) {
224
13.6k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
13.6k
      handle_ = rhs.handle_;
226
13.6k
      call_ = rhs.call_;
227
13.6k
      rhs.handle_ = nullptr;
228
13.6k
    }
229
40.8k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&)
ofats::any_detail::any_invocable_impl<void, false, char const*>::swap(ofats::any_detail::any_invocable_impl<void, false, char const*>&)
Line
Count
Source
211
6.81k
  void swap(any_invocable_impl& rhs) noexcept {
212
6.81k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
6.81k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
6.81k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&)
Line
Count
Source
211
56.2k
  void swap(any_invocable_impl& rhs) noexcept {
212
56.2k
    if (handle_) {
213
28.1k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
28.1k
      } else {
221
28.1k
        rhs.swap(*this);
222
28.1k
      }
223
28.1k
    } else if (rhs.handle_) {
224
28.1k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
28.1k
      handle_ = rhs.handle_;
226
28.1k
      call_ = rhs.call_;
227
28.1k
      rhs.handle_ = nullptr;
228
28.1k
    }
229
56.2k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
42.1k
  void swap(any_invocable_impl& rhs) noexcept {
212
42.1k
    if (handle_) {
213
14.0k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
14.0k
      } else {
221
14.0k
        rhs.swap(*this);
222
14.0k
      }
223
28.1k
    } else if (rhs.handle_) {
224
14.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
14.0k
      handle_ = rhs.handle_;
226
14.0k
      call_ = rhs.call_;
227
14.0k
      rhs.handle_ = nullptr;
228
14.0k
    }
229
42.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
14.0k
  void swap(any_invocable_impl& rhs) noexcept {
212
14.0k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
14.0k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
14.0k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
28.1k
  void swap(any_invocable_impl& rhs) noexcept {
212
28.1k
    if (handle_) {
213
14.0k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
14.0k
      } else {
221
14.0k
        rhs.swap(*this);
222
14.0k
      }
223
14.0k
    } else if (rhs.handle_) {
224
14.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
14.0k
      handle_ = rhs.handle_;
226
14.0k
      call_ = rhs.call_;
227
14.0k
      rhs.handle_ = nullptr;
228
14.0k
    }
229
28.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
56.2k
  void swap(any_invocable_impl& rhs) noexcept {
212
56.2k
    if (handle_) {
213
28.1k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
28.1k
      } else {
221
28.1k
        rhs.swap(*this);
222
28.1k
      }
223
28.1k
    } else if (rhs.handle_) {
224
28.1k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
28.1k
      handle_ = rhs.handle_;
226
28.1k
      call_ = rhs.call_;
227
28.1k
      rhs.handle_ = nullptr;
228
28.1k
    }
229
56.2k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&)
230
231
17.2M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false>::operator bool() const
Line
Count
Source
231
4.29M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::operator bool() const
Line
Count
Source
231
164k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator bool() const
Line
Count
Source
231
18.1k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::operator bool() const
Line
Count
Source
231
11.7k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
874
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
Line
Count
Source
231
10.2M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
101k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
1.01M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
5.13k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
108k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::operator bool() const
Line
Count
Source
231
101k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
45.8k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
22.8k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
11.7k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
48.8k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::operator bool() const
Line
Count
Source
231
68.4k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::operator bool() const
Line
Count
Source
231
209k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
Line
Count
Source
231
263k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
163k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
151k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
18.9k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
192k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
232
233
 protected:
234
  template <class F, class... Args>
235
6.75M
  void create(Args&&... args) {
236
6.75M
    using hdl = handler<F>;
237
6.75M
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.75M
    handle_ = &hdl::handle;
239
6.75M
    call_ = &hdl::call;
240
6.75M
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
958k
  void create(Args&&... args) {
236
958k
    using hdl = handler<F>;
237
958k
    hdl::create(storage_, std::forward<Args>(args)...);
238
958k
    handle_ = &hdl::handle;
239
958k
    call_ = &hdl::call;
240
958k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::create<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
958k
  void create(Args&&... args) {
236
958k
    using hdl = handler<F>;
237
958k
    hdl::create(storage_, std::forward<Args>(args)...);
238
958k
    handle_ = &hdl::handle;
239
958k
    call_ = &hdl::call;
240
958k
  }
Unexecuted instantiation: void ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::create<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, {lambda(unsigned long)#1}>({lambda(unsigned long)#1}&&)
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::create<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
11.7k
  void create(Args&&... args) {
236
11.7k
    using hdl = handler<F>;
237
11.7k
    hdl::create(storage_, std::forward<Args>(args)...);
238
11.7k
    handle_ = &hdl::handle;
239
11.7k
    call_ = &hdl::call;
240
11.7k
  }
void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
5.87k
  void create(Args&&... args) {
236
5.87k
    using hdl = handler<F>;
237
5.87k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.87k
    handle_ = &hdl::handle;
239
5.87k
    call_ = &hdl::call;
240
5.87k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
2.00M
  void create(Args&&... args) {
236
2.00M
    using hdl = handler<F>;
237
2.00M
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.00M
    handle_ = &hdl::handle;
239
2.00M
    call_ = &hdl::call;
240
2.00M
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::create<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
2.00M
  void create(Args&&... args) {
236
2.00M
    using hdl = handler<F>;
237
2.00M
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.00M
    handle_ = &hdl::handle;
239
2.00M
    call_ = &hdl::call;
240
2.00M
  }
Unexecuted instantiation: void ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::create<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, {lambda(unsigned long)#1}>({lambda(unsigned long)#1}&&)
void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
17.0k
  void create(Args&&... args) {
236
17.0k
    using hdl = handler<F>;
237
17.0k
    hdl::create(storage_, std::forward<Args>(args)...);
238
17.0k
    handle_ = &hdl::handle;
239
17.0k
    call_ = &hdl::call;
240
17.0k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
13.6k
  void create(Args&&... args) {
236
13.6k
    using hdl = handler<F>;
237
13.6k
    hdl::create(storage_, std::forward<Args>(args)...);
238
13.6k
    handle_ = &hdl::handle;
239
13.6k
    call_ = &hdl::call;
240
13.6k
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::create<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
68.4k
  void create(Args&&... args) {
236
68.4k
    using hdl = handler<F>;
237
68.4k
    hdl::create(storage_, std::forward<Args>(args)...);
238
68.4k
    handle_ = &hdl::handle;
239
68.4k
    call_ = &hdl::call;
240
68.4k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
13.6k
  void create(Args&&... args) {
236
13.6k
    using hdl = handler<F>;
237
13.6k
    hdl::create(storage_, std::forward<Args>(args)...);
238
13.6k
    handle_ = &hdl::handle;
239
13.6k
    call_ = &hdl::call;
240
13.6k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
2.78k
  void create(Args&&... args) {
236
2.78k
    using hdl = handler<F>;
237
2.78k
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.78k
    handle_ = &hdl::handle;
239
2.78k
    call_ = &hdl::call;
240
2.78k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
1.50k
  void create(Args&&... args) {
236
1.50k
    using hdl = handler<F>;
237
1.50k
    hdl::create(storage_, std::forward<Args>(args)...);
238
1.50k
    handle_ = &hdl::handle;
239
1.50k
    call_ = &hdl::call;
240
1.50k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
2.78k
  void create(Args&&... args) {
236
2.78k
    using hdl = handler<F>;
237
2.78k
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.78k
    handle_ = &hdl::handle;
239
2.78k
    call_ = &hdl::call;
240
2.78k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
1.28k
  void create(Args&&... args) {
236
1.28k
    using hdl = handler<F>;
237
1.28k
    hdl::create(storage_, std::forward<Args>(args)...);
238
1.28k
    handle_ = &hdl::handle;
239
1.28k
    call_ = &hdl::call;
240
1.28k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
7.96k
  void create(Args&&... args) {
236
7.96k
    using hdl = handler<F>;
237
7.96k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.96k
    handle_ = &hdl::handle;
239
7.96k
    call_ = &hdl::call;
240
7.96k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_7, test()::$_7>(test()::$_7&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_8, test()::$_8>(test()::$_8&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_9, test()::$_9>(test()::$_9&&)
Line
Count
Source
235
6.81k
  void create(Args&&... args) {
236
6.81k
    using hdl = handler<F>;
237
6.81k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.81k
    handle_ = &hdl::handle;
239
6.81k
    call_ = &hdl::call;
240
6.81k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
14.0k
  void create(Args&&... args) {
236
14.0k
    using hdl = handler<F>;
237
14.0k
    hdl::create(storage_, std::forward<Args>(args)...);
238
14.0k
    handle_ = &hdl::handle;
239
14.0k
    call_ = &hdl::call;
240
14.0k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
14.0k
  void create(Args&&... args) {
236
14.0k
    using hdl = handler<F>;
237
14.0k
    hdl::create(storage_, std::forward<Args>(args)...);
238
14.0k
    handle_ = &hdl::handle;
239
14.0k
    call_ = &hdl::call;
240
14.0k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_7, test()::$_7>(test()::$_7&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_8, test()::$_8>(test()::$_8&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_9, test()::$_9>(test()::$_9&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
15.8k
  void create(Args&&... args) {
236
15.8k
    using hdl = handler<F>;
237
15.8k
    hdl::create(storage_, std::forward<Args>(args)...);
238
15.8k
    handle_ = &hdl::handle;
239
15.8k
    call_ = &hdl::call;
240
15.8k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_10, test()::$_10>(test()::$_10&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_11, test()::$_11>(test()::$_11&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_12, test()::$_12>(test()::$_12&&)
Line
Count
Source
235
7.03k
  void create(Args&&... args) {
236
7.03k
    using hdl = handler<F>;
237
7.03k
    hdl::create(storage_, std::forward<Args>(args)...);
238
7.03k
    handle_ = &hdl::handle;
239
7.03k
    call_ = &hdl::call;
240
7.03k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
3.23k
  void create(Args&&... args) {
236
3.23k
    using hdl = handler<F>;
237
3.23k
    hdl::create(storage_, std::forward<Args>(args)...);
238
3.23k
    handle_ = &hdl::handle;
239
3.23k
    call_ = &hdl::call;
240
3.23k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
23.6k
  void create(Args&&... args) {
236
23.6k
    using hdl = handler<F>;
237
23.6k
    hdl::create(storage_, std::forward<Args>(args)...);
238
23.6k
    handle_ = &hdl::handle;
239
23.6k
    call_ = &hdl::call;
240
23.6k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}, {lambda()#2}>({lambda()#2}&&)
Line
Count
Source
235
23.6k
  void create(Args&&... args) {
236
23.6k
    using hdl = handler<F>;
237
23.6k
    hdl::create(storage_, std::forward<Args>(args)...);
238
23.6k
    handle_ = &hdl::handle;
239
23.6k
    call_ = &hdl::call;
240
23.6k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}, {lambda()#2}>({lambda()#2}&&)
Line
Count
Source
235
19.2k
  void create(Args&&... args) {
236
19.2k
    using hdl = handler<F>;
237
19.2k
    hdl::create(storage_, std::forward<Args>(args)...);
238
19.2k
    handle_ = &hdl::handle;
239
19.2k
    call_ = &hdl::call;
240
19.2k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
3.23k
  void create(Args&&... args) {
236
3.23k
    using hdl = handler<F>;
237
3.23k
    hdl::create(storage_, std::forward<Args>(args)...);
238
3.23k
    handle_ = &hdl::handle;
239
3.23k
    call_ = &hdl::call;
240
3.23k
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#2}, {lambda(auto:1*)#2}>({lambda(auto:1*)#2}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#3}, {lambda(auto:1*)#3}>({lambda(auto:1*)#3}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#4}, {lambda(auto:1*)#4}>({lambda(auto:1*)#4}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
Http.cpp:void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(void*, uWS::HttpRequest*)#1}>({lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
235
159k
  void create(Args&&... args) {
236
159k
    using hdl = handler<F>;
237
159k
    hdl::create(storage_, std::forward<Args>(args)...);
238
159k
    handle_ = &hdl::handle;
239
159k
    call_ = &hdl::call;
240
159k
  }
Http.cpp:void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::create<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
159k
  void create(Args&&... args) {
236
159k
    using hdl = handler<F>;
237
159k
    hdl::create(storage_, std::forward<Args>(args)...);
238
159k
    handle_ = &hdl::handle;
239
159k
    call_ = &hdl::call;
240
159k
  }
241
242
23.1M
  void destroy() noexcept {
243
23.1M
    if (handle_) {
244
6.75M
      handle_(action::destroy, &storage_, nullptr);
245
6.75M
      handle_ = nullptr;
246
6.75M
    }
247
23.1M
  }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::destroy()
Line
Count
Source
242
22.9k
  void destroy() noexcept {
243
22.9k
    if (handle_) {
244
22.9k
      handle_(action::destroy, &storage_, nullptr);
245
22.9k
      handle_ = nullptr;
246
22.9k
    }
247
22.9k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
29.3k
  void destroy() noexcept {
243
29.3k
    if (handle_) {
244
5.87k
      handle_(action::destroy, &storage_, nullptr);
245
5.87k
      handle_ = nullptr;
246
5.87k
    }
247
29.3k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
29.3k
  void destroy() noexcept {
243
29.3k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
29.3k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
58.7k
  void destroy() noexcept {
243
58.7k
    if (handle_) {
244
11.7k
      handle_(action::destroy, &storage_, nullptr);
245
11.7k
      handle_ = nullptr;
246
11.7k
    }
247
58.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
58.7k
  void destroy() noexcept {
243
58.7k
    if (handle_) {
244
11.7k
      handle_(action::destroy, &storage_, nullptr);
245
11.7k
      handle_ = nullptr;
246
11.7k
    }
247
58.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
58.7k
  void destroy() noexcept {
243
58.7k
    if (handle_) {
244
5.87k
      handle_(action::destroy, &storage_, nullptr);
245
5.87k
      handle_ = nullptr;
246
5.87k
    }
247
58.7k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
242
17.6k
  void destroy() noexcept {
243
17.6k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
17.6k
  }
ofats::any_detail::any_invocable_impl<void, false>::destroy()
Line
Count
Source
242
5.27M
  void destroy() noexcept {
243
5.27M
    if (handle_) {
244
129k
      handle_(action::destroy, &storage_, nullptr);
245
129k
      handle_ = nullptr;
246
129k
    }
247
5.27M
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::destroy()
Line
Count
Source
242
78.8k
  void destroy() noexcept {
243
78.8k
    if (handle_) {
244
39.4k
      handle_(action::destroy, &storage_, nullptr);
245
39.4k
      handle_ = nullptr;
246
39.4k
    }
247
78.8k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::destroy()
Line
Count
Source
242
29.3k
  void destroy() noexcept {
243
29.3k
    if (handle_) {
244
11.7k
      handle_(action::destroy, &storage_, nullptr);
245
11.7k
      handle_ = nullptr;
246
11.7k
    }
247
29.3k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::destroy()
Line
Count
Source
242
36.5k
  void destroy() noexcept {
243
36.5k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
36.5k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::destroy()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::destroy()
Line
Count
Source
242
4.58M
  void destroy() noexcept {
243
4.58M
    if (handle_) {
244
2.78k
      handle_(action::destroy, &storage_, nullptr);
245
2.78k
      handle_ = nullptr;
246
2.78k
    }
247
4.58M
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::destroy()
Line
Count
Source
242
4.98M
  void destroy() noexcept {
243
4.98M
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
4.98M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
3.11M
  void destroy() noexcept {
243
3.11M
    if (handle_) {
244
3.11M
      handle_(action::destroy, &storage_, nullptr);
245
3.11M
      handle_ = nullptr;
246
3.11M
    }
247
3.11M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::destroy()
Line
Count
Source
242
3.11M
  void destroy() noexcept {
243
3.11M
    if (handle_) {
244
3.11M
      handle_(action::destroy, &storage_, nullptr);
245
3.11M
      handle_ = nullptr;
246
3.11M
    }
247
3.11M
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
35.2k
  void destroy() noexcept {
243
35.2k
    if (handle_) {
244
11.7k
      handle_(action::destroy, &storage_, nullptr);
245
11.7k
      handle_ = nullptr;
246
11.7k
    }
247
35.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
68.1k
  void destroy() noexcept {
243
68.1k
    if (handle_) {
244
6.81k
      handle_(action::destroy, &storage_, nullptr);
245
6.81k
      handle_ = nullptr;
246
6.81k
    }
247
68.1k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
68.1k
  void destroy() noexcept {
243
68.1k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
68.1k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
136k
  void destroy() noexcept {
243
136k
    if (handle_) {
244
13.6k
      handle_(action::destroy, &storage_, nullptr);
245
13.6k
      handle_ = nullptr;
246
13.6k
    }
247
136k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
136k
  void destroy() noexcept {
243
136k
    if (handle_) {
244
13.6k
      handle_(action::destroy, &storage_, nullptr);
245
13.6k
      handle_ = nullptr;
246
13.6k
    }
247
136k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
136k
  void destroy() noexcept {
243
136k
    if (handle_) {
244
6.81k
      handle_(action::destroy, &storage_, nullptr);
245
6.81k
      handle_ = nullptr;
246
6.81k
    }
247
136k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
242
83.0k
  void destroy() noexcept {
243
83.0k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
83.0k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
205k
  void destroy() noexcept {
243
205k
    if (handle_) {
244
68.4k
      handle_(action::destroy, &storage_, nullptr);
245
68.4k
      handle_ = nullptr;
246
68.4k
    }
247
205k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::destroy()
Line
Count
Source
242
208k
  void destroy() noexcept {
243
208k
    if (handle_) {
244
68.4k
      handle_(action::destroy, &storage_, nullptr);
245
68.4k
      handle_ = nullptr;
246
68.4k
    }
247
208k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::destroy()
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
70.3k
  void destroy() noexcept {
243
70.3k
    if (handle_) {
244
14.0k
      handle_(action::destroy, &storage_, nullptr);
245
14.0k
      handle_ = nullptr;
246
14.0k
    }
247
70.3k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
70.3k
  void destroy() noexcept {
243
70.3k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
70.3k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
140k
  void destroy() noexcept {
243
140k
    if (handle_) {
244
28.1k
      handle_(action::destroy, &storage_, nullptr);
245
28.1k
      handle_ = nullptr;
246
28.1k
    }
247
140k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
140k
  void destroy() noexcept {
243
140k
    if (handle_) {
244
28.1k
      handle_(action::destroy, &storage_, nullptr);
245
28.1k
      handle_ = nullptr;
246
28.1k
    }
247
140k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
140k
  void destroy() noexcept {
243
140k
    if (handle_) {
244
14.0k
      handle_(action::destroy, &storage_, nullptr);
245
14.0k
      handle_ = nullptr;
246
14.0k
    }
247
140k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::destroy()
Line
Count
Source
242
28
  void destroy() noexcept {
243
28
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
28
  }
248
249
18.0M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
18.0M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
18.0M
  }
ofats::any_detail::any_invocable_impl<void, false>::call()
Line
Count
Source
249
101k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
101k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
101k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::call(uWS::Loop*)
Line
Count
Source
249
14.4M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
14.4M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
14.4M
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::call(uWS::HttpResponse<true>*, int)
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::call(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
249
227k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
227k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
227k
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::call(void*, uWS::HttpRequest*)
Line
Count
Source
249
442k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
442k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
442k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
249
121k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
121k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
121k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::call(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
249
34.6k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
34.6k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
34.6k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::call(unsigned long)
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::call(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
249
121k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
121k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
121k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
101k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
101k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
101k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
1.01M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
1.01M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
1.01M
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
5.13k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
5.13k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
5.13k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::call(uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
249
108k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
108k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
108k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::call(uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::call(us_listen_socket_t*)
Line
Count
Source
249
22.9k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
22.9k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
22.9k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::call(uWS::HttpResponse<false>*, int)
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
249
311k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
311k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
311k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
44.2k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
44.2k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
44.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
19.2k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
19.2k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
19.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
9.63k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
9.63k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
9.63k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::call(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
249
47.0k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
47.0k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
47.0k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::call(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
249
311k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
311k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
311k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::call(uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, char const*>::call(char const*)
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
163k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
163k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
163k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
151k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
151k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
151k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
18.9k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
18.9k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
18.9k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::call(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
249
192k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
192k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
192k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::call(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
249
25.1k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
25.1k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
25.1k
  }
252
253
  friend bool operator==(const any_invocable_impl& f, std::nullptr_t) noexcept {
254
    return !f;
255
  }
256
  friend bool operator==(std::nullptr_t, const any_invocable_impl& f) noexcept {
257
    return !f;
258
  }
259
  friend bool operator!=(const any_invocable_impl& f, std::nullptr_t) noexcept {
260
    return static_cast<bool>(f);
261
  }
262
  friend bool operator!=(std::nullptr_t, const any_invocable_impl& f) noexcept {
263
    return static_cast<bool>(f);
264
  }
265
266
  friend void swap(any_invocable_impl& lhs, any_invocable_impl& rhs) noexcept {
267
    lhs.swap(rhs);
268
  }
269
270
 private:
271
  storage storage_;
272
  handle_func handle_ = nullptr;
273
  call_func call_;
274
};
275
276
template <class T>
277
using remove_cvref_t = std::remove_cv_t<std::remove_reference_t<T>>;
278
279
template <class AI, class F, bool noex, class R, class FCall, class... ArgTypes>
280
using can_convert = std::conjunction<
281
    std::negation<std::is_same<remove_cvref_t<F>, AI>>,
282
    std::negation<any_detail::is_in_place_type<remove_cvref_t<F>>>,
283
    std::is_invocable_r<R, FCall, ArgTypes...>,
284
    std::bool_constant<(!noex ||
285
                        std::is_nothrow_invocable_r_v<R, FCall, ArgTypes...>)>,
286
    std::is_constructible<std::decay_t<F>, F>>;
287
288
}  // namespace any_detail
289
290
template <class Signature>
291
class any_invocable;
292
293
#define __OFATS_ANY_INVOCABLE(cv, ref, noex, inv_quals)                        \
294
  template <class R, class... ArgTypes>                                        \
295
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)>                    \
296
      : public any_detail::any_invocable_impl<R, noex, ArgTypes...> {          \
297
    using base_type = any_detail::any_invocable_impl<R, noex, ArgTypes...>;    \
298
                                                                               \
299
   public:                                                                     \
300
    using base_type::base_type;                                                \
301
                                                                               \
302
    template <                                                                 \
303
        class F,                                                               \
304
        class = std::enable_if_t<any_detail::can_convert<                      \
305
            any_invocable, F, noex, R, F inv_quals, ArgTypes...>::value>>      \
306
6.75M
    any_invocable(F&& f) {                                                     \
307
6.75M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.75M
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
958k
    any_invocable(F&& f) {                                                     \
307
958k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
958k
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::any_invocable<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
958k
    any_invocable(F&& f) {                                                     \
307
958k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
958k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::any_invocable<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, void>(uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}&&)
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)>::any_invocable<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, void>(uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
11.7k
    any_invocable(F&& f) {                                                     \
307
11.7k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
11.7k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
5.87k
    any_invocable(F&& f) {                                                     \
307
5.87k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.87k
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
2.00M
    any_invocable(F&& f) {                                                     \
307
2.00M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.00M
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::any_invocable<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
2.00M
    any_invocable(F&& f) {                                                     \
307
2.00M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.00M
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::any_invocable<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, void>(uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}&&)
ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
17.0k
    any_invocable(F&& f) {                                                     \
307
17.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
17.0k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
13.6k
    any_invocable(F&& f) {                                                     \
307
13.6k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
13.6k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)>::any_invocable<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, void>(uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
68.4k
    any_invocable(F&& f) {                                                     \
307
68.4k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
68.4k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
13.6k
    any_invocable(F&& f) {                                                     \
307
13.6k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
13.6k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}&&)
Line
Count
Source
306
2.78k
    any_invocable(F&& f) {                                                     \
307
2.78k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.78k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}&&)
Line
Count
Source
306
1.50k
    any_invocable(F&& f) {                                                     \
307
1.50k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
1.50k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
2.78k
    any_invocable(F&& f) {                                                     \
307
2.78k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.78k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}&&)
Line
Count
Source
306
1.28k
    any_invocable(F&& f) {                                                     \
307
1.28k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
1.28k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, void>(test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}&&)
Line
Count
Source
306
7.96k
    any_invocable(F&& f) {                                                     \
307
7.96k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.96k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_7, void>(test()::$_7&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_8, void>(test()::$_8&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_9, void>(test()::$_9&&)
Line
Count
Source
306
6.81k
    any_invocable(F&& f) {                                                     \
307
6.81k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.81k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
14.0k
    any_invocable(F&& f) {                                                     \
307
14.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
14.0k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
14.0k
    any_invocable(F&& f) {                                                     \
307
14.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
14.0k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_7, void>(test()::$_7&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_8, void>(test()::$_8&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_9, void>(test()::$_9&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, void>(test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}&&)
Line
Count
Source
306
15.8k
    any_invocable(F&& f) {                                                     \
307
15.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
15.8k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_10, void>(test()::$_10&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_11, void>(test()::$_11&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_12, void>(test()::$_12&&)
Line
Count
Source
306
7.03k
    any_invocable(F&& f) {                                                     \
307
7.03k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
7.03k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
3.23k
    any_invocable(F&& f) {                                                     \
307
3.23k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
3.23k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}&&)
Line
Count
Source
306
23.6k
    any_invocable(F&& f) {                                                     \
307
23.6k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
23.6k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}&&)
Line
Count
Source
306
23.6k
    any_invocable(F&& f) {                                                     \
307
23.6k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
23.6k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}&&)
Line
Count
Source
306
19.2k
    any_invocable(F&& f) {                                                     \
307
19.2k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
19.2k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
3.23k
    any_invocable(F&& f) {                                                     \
307
3.23k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
3.23k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#1}, void>(StaticData::any_invocable()::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#2}, void>(StaticData::any_invocable()::{lambda(auto:1*)#2}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#3}, void>(StaticData::any_invocable()::{lambda(auto:1*)#3}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#4}, void>(StaticData::any_invocable()::{lambda(auto:1*)#4}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
Http.cpp:ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
159k
    any_invocable(F&& f) {                                                     \
307
159k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
159k
    }                                                                          \
Http.cpp:ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::any_invocable<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
159k
    any_invocable(F&& f) {                                                     \
307
159k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
159k
    }                                                                          \
309
                                                                               \
310
    template <class T, class... Args, class VT = std::decay_t<T>,              \
311
              class = std::enable_if_t<                                        \
312
                  std::is_move_constructible_v<VT> &&                          \
313
                  std::is_constructible_v<VT, Args...> &&                      \
314
                  std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&       \
315
                  (!noex || std::is_nothrow_invocable_r_v<R, VT inv_quals,     \
316
                                                          ArgTypes...>)>>      \
317
    explicit any_invocable(std::in_place_type_t<T>, Args&&... args) {          \
318
      base_type::template create<VT>(std::forward<Args>(args)...);             \
319
    }                                                                          \
320
                                                                               \
321
    template <                                                                 \
322
        class T, class U, class... Args, class VT = std::decay_t<T>,           \
323
        class = std::enable_if_t<                                              \
324
            std::is_move_constructible_v<VT> &&                                \
325
            std::is_constructible_v<VT, std::initializer_list<U>&, Args...> && \
326
            std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&             \
327
            (!noex ||                                                          \
328
             std::is_nothrow_invocable_r_v<R, VT inv_quals, ArgTypes...>)>>    \
329
    explicit any_invocable(std::in_place_type_t<T>,                            \
330
                           std::initializer_list<U> il, Args&&... args) {      \
331
      base_type::template create<VT>(il, std::forward<Args>(args)...);         \
332
    }                                                                          \
333
                                                                               \
334
    template <class F, class FDec = std::decay_t<F>>                           \
335
    std::enable_if_t<!std::is_same_v<FDec, any_invocable> &&                   \
336
                         std::is_move_constructible_v<FDec>,                   \
337
                     any_invocable&>                                           \
338
818k
    operator=(F&& f) {                                                         \
339
818k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
818k
      return *this;                                                            \
341
818k
    }                                                                          \
_ZN5ofats13any_invocableIFvNSt3__117basic_string_viewIcNS1_11char_traitsIcEEEEbEEaSIDnDnEENS1_9enable_ifIXaantsr3stdE9is_same_vIT0_S7_Esr3stdE23is_move_constructible_vISA_EERS7_E4typeEOT_
Line
Count
Source
338
1.28k
    operator=(F&& f) {                                                         \
339
1.28k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
1.28k
      return *this;                                                            \
341
1.28k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb1EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
_ZN5ofats13any_invocableIFvvEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
338
408k
    operator=(F&& f) {                                                         \
339
408k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
408k
      return *this;                                                            \
341
408k
    }                                                                          \
_ZN5ofats13any_invocableIFbmEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
338
408k
    operator=(F&& f) {                                                         \
339
408k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
408k
      return *this;                                                            \
341
408k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb0EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
342
    template <class F>                                                         \
343
    any_invocable& operator=(std::reference_wrapper<F> f) {                    \
344
      any_invocable{f}.swap(*this);                                            \
345
      return *this;                                                            \
346
    }                                                                          \
347
                                                                               \
348
18.0M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
18.0M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
18.0M
    }                                                                          \
ofats::any_invocable<void ()>::operator()()
Line
Count
Source
348
101k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
101k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
101k
    }                                                                          \
ofats::any_invocable<void (uWS::Loop*)>::operator()(uWS::Loop*)
Line
Count
Source
348
14.4M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
14.4M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
14.4M
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<true>*, int)>::operator()(uWS::HttpResponse<true>*, int)
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::operator()(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
348
227k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
227k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
227k
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::operator()(void*, uWS::HttpRequest*)
Line
Count
Source
348
442k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
442k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
442k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
348
121k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
121k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
121k
    }                                                                          \
ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
348
34.6k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
34.6k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
34.6k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::operator()(unsigned long)
ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
348
121k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
121k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
121k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
101k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
101k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
101k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
1.01M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
1.01M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
1.01M
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
5.13k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
5.13k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
5.13k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
348
108k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
108k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
108k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)>::operator()(uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_invocable<void (us_listen_socket_t*)>::operator()(us_listen_socket_t*)
Line
Count
Source
348
22.9k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
22.9k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
22.9k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<false>*, int)>::operator()(uWS::HttpResponse<false>*, int)
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
348
311k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
311k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
311k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
44.2k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
44.2k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
44.2k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
19.2k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
19.2k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
19.2k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
9.63k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
9.63k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
9.63k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
348
47.0k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
47.0k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
47.0k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
348
311k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
311k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
311k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)>::operator()(uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)
Unexecuted instantiation: ofats::any_invocable<void (char const*)>::operator()(char const*)
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
163k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
163k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
163k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
151k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
151k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
151k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
18.9k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
18.9k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
18.9k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
348
192k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
192k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
192k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::operator()(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
348
25.1k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
25.1k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
25.1k
    }                                                                          \
351
  };
352
353
// cv -> {`empty`, const}
354
// ref -> {`empty`, &, &&}
355
// noex -> {true, false}
356
// inv_quals -> (is_empty(ref) ? & : ref)
357
__OFATS_ANY_INVOCABLE(, , false, &)               // 000
358
__OFATS_ANY_INVOCABLE(, , true, &)                // 001
359
__OFATS_ANY_INVOCABLE(, &, false, &)              // 010
360
__OFATS_ANY_INVOCABLE(, &, true, &)               // 011
361
__OFATS_ANY_INVOCABLE(, &&, false, &&)            // 020
362
__OFATS_ANY_INVOCABLE(, &&, true, &&)             // 021
363
__OFATS_ANY_INVOCABLE(const, , false, const&)     // 100
364
__OFATS_ANY_INVOCABLE(const, , true, const&)      // 101
365
__OFATS_ANY_INVOCABLE(const, &, false, const&)    // 110
366
__OFATS_ANY_INVOCABLE(const, &, true, const&)     // 111
367
__OFATS_ANY_INVOCABLE(const, &&, false, const&&)  // 120
368
__OFATS_ANY_INVOCABLE(const, &&, true, const&&)   // 121
369
370
#undef __OFATS_ANY_INVOCABLE
371
372
}  // namespace ofats
373
374
/* We, uWebSockets define our own type */
375
namespace uWS {
376
  template <class T>
377
  using MoveOnlyFunction = ofats::any_invocable<T>;
378
}
379
380
#else // !defined(__cpp_lib_move_only_function) || __cpp_lib_move_only_function < 202110L
381
382
namespace uWS {
383
  template <class T>
384
  using MoveOnlyFunction = std::move_only_function<T>;
385
}
386
387
#endif
388
389
#endif  // _ANY_INVOKABLE_H_