/////////////////////////////////////////////////////////////////////////////// /// \file lazy.hpp /// Contains definition of the lazy<> transform. // // Copyright 2008 Eric Niebler. 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) template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type () >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4 , A5) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4 , A5 , A6) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8) >::template impl {}; }; template struct lazy : transform > { template struct impl : call< typename make::template impl::result_type (A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9) >::template impl {}; };