Forward declares boost::hana::slice and boost::hana::slice_c.  
More...
| Namespaces | |
| boost::hana | |
| Namespace containing everything in the library. | |
| Variables | |
| constexpr auto | boost::hana::slice | 
| Extract the elements of a Sequenceat the given indices.Given an arbitrary sequence ofindices,slicereturns a new sequence of the elements of the original sequence that appear at those indices. In other words,.  More... | |
| template<std::size_t from, std::size_t to> | |
| constexpr auto | boost::hana::slice_c | 
| Shorthand to slicea contiguous range of elements.slice_cis simply a shorthand to slice a contiguous range of elements. In particular,slice_c<from, to>(xs)is equivalent toslice(xs, range_c<std::size_t, from, to>), which simply slices all the elements ofxscontained in the half-open interval delimited by[from, to). Like forslice, the indices used withslice_care 0-based and they must be in the bounds of the sequence being sliced.  More... | |
Forward declares boost::hana::slice and boost::hana::slice_c.