Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 1 | // 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 | |
| 11 | #ifndef BOOST_RANGE_SIZE_HPP |
| 12 | #define BOOST_RANGE_SIZE_HPP |
| 13 | |
| 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 | |
| 24 | namespace ndnboost |
| 25 | { |
| 26 | namespace range_detail |
| 27 | { |
| 28 | template<class SinglePassRange> |
| 29 | inline BOOST_DEDUCED_TYPENAME range_size<const SinglePassRange>::type |
| 30 | range_calculate_size(const SinglePassRange& rng) |
| 31 | { |
| 32 | BOOST_ASSERT( (ndnboost::end(rng) - ndnboost::begin(rng)) >= 0 && |
| 33 | "reachability invariant broken!" ); |
| 34 | return ndnboost::end(rng) - ndnboost::begin(rng); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | template<class SinglePassRange> |
| 39 | inline BOOST_DEDUCED_TYPENAME range_size<const SinglePassRange>::type |
| 40 | size(const SinglePassRange& rng) |
| 41 | { |
| 42 | #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \ |
| 43 | !BOOST_WORKAROUND(__GNUC__, < 3) \ |
| 44 | /**/ |
| 45 | using namespace range_detail; |
| 46 | #endif |
| 47 | return range_calculate_size(rng); |
| 48 | } |
| 49 | |
| 50 | } // namespace 'boost' |
| 51 | |
| 52 | #endif |