// // 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 subr_wrapper_impl(Fn fn, pack, pack<>) { check_call_once(); static const Fn fn_ = fn; return [] () -> SCM { return to_scm(invoke(fn_)); }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1) -> SCM { return to_scm(invoke(fn_, to_cpp(a1))); }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2) -> SCM { return to_scm(invoke(fn_, to_cpp(a1), to_cpp(a2))); }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2, SCM a3) -> SCM { return to_scm(invoke(fn_, to_cpp(a1), to_cpp(a2), to_cpp(a3))); }; } template auto subr_wrapper_impl(Fn fn, pack, pack<>) { check_call_once(); static const Fn fn_ = fn; return [] () -> SCM { invoke(fn_); return SCM_UNSPECIFIED; }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1) -> SCM { invoke(fn_, to_cpp(a1)); return SCM_UNSPECIFIED; }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2) -> SCM { invoke(fn_, to_cpp(a1), to_cpp(a2)); return SCM_UNSPECIFIED; }; } template auto subr_wrapper_impl(Fn fn, pack, pack) { check_call_once(); static const Fn fn_ = fn; return [] (SCM a1, SCM a2, SCM a3) -> SCM { invoke(fn_, to_cpp(a1), to_cpp(a2), to_cpp(a3)); return SCM_UNSPECIFIED; }; } template auto subr_wrapper_aux(Fn fn, pack) { return subr_wrapper_impl( fn, pack>{}, pack{}); } template auto subr_wrapper(Fn fn) { return subr_wrapper_aux(fn, function_args_t{}); } } // anonymous namespace } // namespace detail } // namespace scm