blob: 1952550da01bc476460b20c9a1cdc1caa63cbf2e [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// Boost.Range library
2//
3// Copyright Thorsten Ottosen 2003-2004. Use, modification and
4// distribution is subject to the Boost Software License, Version
5// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// For more information, see http://www.boost.org/libs/range/
9//
10
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#ifndef NDNBOOST_RANGE_SIZE_HPP
12#define NDNBOOST_RANGE_SIZE_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070013
14#if defined(_MSC_VER) && (_MSC_VER >= 1200)
15# pragma once
16#endif
17
18#include <ndnboost/range/config.hpp>
19#include <ndnboost/range/begin.hpp>
20#include <ndnboost/range/end.hpp>
21#include <ndnboost/range/size_type.hpp>
22#include <ndnboost/assert.hpp>
23
24namespace ndnboost
25{
26 namespace range_detail
27 {
28 template<class SinglePassRange>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029 inline NDNBOOST_DEDUCED_TYPENAME range_size<const SinglePassRange>::type
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070030 range_calculate_size(const SinglePassRange& rng)
31 {
Jeff Thompson3d613fd2013-10-15 15:39:04 -070032 NDNBOOST_ASSERT( (ndnboost::end(rng) - ndnboost::begin(rng)) >= 0 &&
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070033 "reachability invariant broken!" );
34 return ndnboost::end(rng) - ndnboost::begin(rng);
35 }
36 }
37
38 template<class SinglePassRange>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070039 inline NDNBOOST_DEDUCED_TYPENAME range_size<const SinglePassRange>::type
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070040 size(const SinglePassRange& rng)
41 {
Jeff Thompson3d613fd2013-10-15 15:39:04 -070042#if !NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x564)) && \
43 !NDNBOOST_WORKAROUND(__GNUC__, < 3) \
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070044 /**/
45 using namespace range_detail;
46#endif
47 return range_calculate_size(rng);
48 }
49
50} // namespace 'boost'
51
52#endif