// // immer: immutable data structures for C++ // Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente // // This software is distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt // #pragma once #include #include #include namespace scm { namespace detail { // this anonymous namespace should help avoiding registration clashes // among translation units. namespace { template auto finalizer_wrapper_impl(Fn fn, pack<>) { check_call_once(); static const Fn fn_ = fn; return [] { invoke(fn_); }; } template auto finalizer_wrapper_impl(Fn fn, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1) { invoke(fn_, to_cpp(a1)); }; } template auto finalizer_wrapper_impl(Fn fn, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2) { invoke(fn_, to_cpp(a1), to_cpp(a2)); }; } template auto finalizer_wrapper_impl(Fn fn, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2, SCM a3) { invoke(fn_, to_cpp(a1), to_cpp(a2), to_cpp(a3)); }; } template auto finalizer_wrapper(Fn fn) { return finalizer_wrapper_impl(fn, function_args_t{}); } } // anonymous namespace } // namespace detail } // namespace scm