Skip to content

Instantly share code, notes, and snippets.

@glennvl
glennvl / static_function.hpp
Last active May 19, 2023 03:08
Function wrapper that uses static memory
/*!
* \file
* \brief Owning function wrapper that uses static memory
*/
#ifndef STATIC_FUNCTION_HPP
#define STATIC_FUNCTION_HPP
#include <array>
#include <concepts>