Skip to content

Instantly share code, notes, and snippets.

View slyshykO's full-sized avatar
🇺🇦
🇺🇦

Oleksiy Slyshyk slyshykO

🇺🇦
🇺🇦
  • Ukraine, Kyiv
View GitHub Profile
@slyshykO
slyshykO / FastFunc.hpp
Created February 20, 2018 12:44 — forked from vittorioromeo/FastFunc.hpp
Don Clugston's fast delegate C++11 implementation
#ifndef SSVU_FASTFUNC
#define SSVU_FASTFUNC
#include <cstring>
#include <type_traits>
#include <cassert>
#include <cstddef>
#include <memory>
#include <new>
#include <utility>