403Webshell
Server IP : 217.160.0.212  /  Your IP : 216.73.216.60
Web Server : Apache
System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64
User : sws1073854427 ( 1073854427)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/include/boost/spirit/home/x3/support/utility/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/include/boost/spirit/home/x3/support/utility/lambda_visitor.hpp
/*=============================================================================
    Copyright (c) 2014 Joel de Guzman

    Distributed under the Boost Software License, Version 1.0. (See accompanying
    file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(BOOST_SPIRIT_X3_LAMBDA_VISITOR_MAY_19_2014_1116AM)
#define BOOST_SPIRIT_X3_LAMBDA_VISITOR_MAY_19_2014_1116AM

namespace boost { namespace spirit { namespace x3
{
    template <typename RT, typename... Lambdas>
    struct lambda_visitor;

    template <typename RT, typename F, typename... Lambdas>
    struct lambda_visitor<RT, F, Lambdas...> : F, lambda_visitor<RT, Lambdas...>
    {
        typedef lambda_visitor<RT , Lambdas...> base_type;
        using F::operator();
        using base_type::operator();
        lambda_visitor(F f, Lambdas... lambdas)
          : F(f), base_type(lambdas...)
        {}
    };

    template <typename RT, typename F>
    struct lambda_visitor<RT, F> : F
    {
        typedef RT result_type;
        using F::operator();
        lambda_visitor(F f)
          : F(f)
        {}
    };

    template <typename RT>
    struct lambda_visitor<RT>
    {
        typedef RT result_type;
    };

    template <typename RT, typename... Lambdas>
    lambda_visitor<RT, Lambdas...> make_lambda_visitor(Lambdas... lambdas)
    {
        return { lambdas... };
    }
}}}

#endif

Youez - 2016 - github.com/yon3zu
LinuXploit