X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d372483508bbd9164c5492148fdfb847348669de..0e8603d2d56c545fae09fad07d2312450e305470:/include/xbt/range.hpp diff --git a/include/xbt/range.hpp b/include/xbt/range.hpp index 7e13722b51..47f021e6bf 100644 --- a/include/xbt/range.hpp +++ b/include/xbt/range.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2016-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,17 +6,18 @@ #ifndef SIMGRID_XBT_RANGE_HPP #define SIMGRID_XBT_RANGE_HPP -namespace simgrid { -namespace xbt { +#include + +namespace simgrid::xbt { /** Describes a contiguous inclusive-exclusive [a,b) range of values */ -template class range { +template class Range { T begin_; T end_; public: - range() : begin_(), end_() {} - range(T begin, T end) : begin_(std::move(begin)), end_(std::move(end)) {} - range(T value) : begin_(value), end_(value + 1) {} + Range() : begin_(), end_() {} + Range(T begin, T end) : begin_(std::move(begin)), end_(std::move(end)) {} + explicit Range(T value) : begin_(value), end_(value + 1) {} T& begin() { return begin_; } T& end() { return end_; } const T& begin() const { return begin_; } @@ -26,7 +26,6 @@ public: bool contain(T const& x) const { return begin_ <= x && end_ > x; } }; -} -} +} // namespace simgrid::xbt #endif