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