Vcsn  2.4
Be Rational
irange.hh
Go to the documentation of this file.
1 #include <boost/range/irange.hpp>
2 
3 namespace vcsn
4 {
5  namespace detail
6  {
10  template <typename Integer>
11  auto irange(Integer last)
12  {
13  return boost::irange(Integer(0), last);
14  }
15  }
16 }
auto irange(Integer last)
Generate an integer range.
Definition: irange.hh:11
Definition: a-star.hh:8