Forward declares boost::hana::remove_range and boost::hana::remove_range_c.  
More...
| Namespaces | |
| boost::hana | |
| Namespace containing everything in the library. | |
| Variables | |
| constexpr auto | boost::hana::remove_range | 
| Remove the elements inside a given range of indices from a sequence. remove_rangereturns a new sequence identical to the original, except that elements at indices in the provided range are removed. Specifically,remove_range([x0, ..., xn], from, to)is a new sequence equivalent to[x0, ..., x_from-1, x_to, ..., xn].  More... | |
| template<std::size_t from, std::size_t to> | |
| constexpr auto | boost::hana::remove_range_c | 
| Equivalent to remove_range; provided for convenience.  More... | |
Forward declares boost::hana::remove_range and boost::hana::remove_range_c.