blob: c5360f46cf421e837913a5086a4b3aee6b58cbac [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_DISTANCE_HPP_INCLUDED
3#define NDNBOOST_MPL_DISTANCE_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2000-2004
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: distance.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/distance_fwd.hpp>
18#include <ndnboost/mpl/iter_fold.hpp>
19#include <ndnboost/mpl/iterator_range.hpp>
20#include <ndnboost/mpl/long.hpp>
21#include <ndnboost/mpl/next.hpp>
22#include <ndnboost/mpl/tag.hpp>
23#include <ndnboost/mpl/apply_wrap.hpp>
24#include <ndnboost/mpl/aux_/msvc_eti_base.hpp>
25#include <ndnboost/mpl/aux_/value_wknd.hpp>
26#include <ndnboost/mpl/aux_/na_spec.hpp>
27#include <ndnboost/mpl/aux_/config/forwarding.hpp>
28#include <ndnboost/mpl/aux_/config/static_constant.hpp>
29
30
31namespace ndnboost { namespace mpl {
32
33// default implementation for forward/bidirectional iterators
34template< typename Tag > struct distance_impl
35{
36 template< typename First, typename Last > struct apply
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037#if !defined(NDNBOOST_MPL_CFG_NO_NESTED_FORWARDING)
Jeff Thompsona28eed82013-08-22 16:21:10 -070038 : aux::msvc_eti_base< typename iter_fold<
39 iterator_range<First,Last>
40 , mpl::long_<0>
41 , next<>
42 >::type >
43 {
44#else
45 {
46 typedef typename iter_fold<
47 iterator_range<First,Last>
48 , mpl::long_<0>
49 , next<>
50 >::type type;
51
Jeff Thompson3d613fd2013-10-15 15:39:04 -070052 NDNBOOST_STATIC_CONSTANT(long, value =
Jeff Thompsona28eed82013-08-22 16:21:10 -070053 (iter_fold<
54 iterator_range<First,Last>
55 , mpl::long_<0>
56 , next<>
57 >::type::value)
58 );
59#endif
60 };
61};
62
63template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070064 typename NDNBOOST_MPL_AUX_NA_PARAM(First)
65 , typename NDNBOOST_MPL_AUX_NA_PARAM(Last)
Jeff Thompsona28eed82013-08-22 16:21:10 -070066 >
67struct distance
68 : distance_impl< typename tag<First>::type >
69 ::template apply<First, Last>
70{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070071 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(2, distance, (First, Last))
Jeff Thompsona28eed82013-08-22 16:21:10 -070072};
73
Jeff Thompson3d613fd2013-10-15 15:39:04 -070074NDNBOOST_MPL_AUX_NA_SPEC(2, distance)
Jeff Thompsona28eed82013-08-22 16:21:10 -070075
76}}
77
Jeff Thompson3d613fd2013-10-15 15:39:04 -070078#endif // NDNBOOST_MPL_DISTANCE_HPP_INCLUDED