![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/qvm/detail/ |
Upload File : |
//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc. //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) #ifndef UUID_185557CE385511E780ACD7B781262D2E #define UUID_185557CE385511E780ACD7B781262D2E #include <boost/qvm/gen/vec_assign2.hpp> #include <boost/qvm/gen/vec_assign3.hpp> #include <boost/qvm/gen/vec_assign4.hpp> namespace boost { namespace qvm { namespace qvm_detail { template <int D> struct assign_vv_defined { static bool const value=false; }; template <int I,int N> struct copy_vector_elements { template <class A,class B> static void f( A & a, B const & b ) { vec_traits<A>::template write_element<I>(a)=vec_traits<B>::template read_element<I>(b); copy_vector_elements<I+1,N>::f(a,b); } }; template <int N> struct copy_vector_elements<N,N> { template <class A,class B> static void f( A &, B const & ) { } }; } template <class A,class B> inline typename boost::enable_if_c< is_vec<A>::value && is_vec<B>::value && vec_traits<A>::dim==vec_traits<B>::dim && !qvm_detail::assign_vv_defined<vec_traits<A>::dim>::value, A &>::type assign( A & a, B const & b ) { qvm_detail::copy_vector_elements<0,vec_traits<A>::dim>::f(a,b); return a; } } } #endif