/*============================================================================= Copyright (c) 2001-2003 Joel de Guzman Copyright (c) 2004 Peder Holt Use, modification and distribution is subject to 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(FUSION_SEQUENCE_SIZE_HPP) #define FUSION_SEQUENCE_SIZE_HPP #include #include namespace boost { namespace fusion { /////////////////////////////////////////////////////////////////////////// // // size metafunction // // Get the size of a Sequence. Usage: // // size::value // /////////////////////////////////////////////////////////////////////////// namespace meta { template struct size_impl { template struct apply {}; }; template struct size : size_impl::type::tag>:: template apply::type> {}; } }} #endif