index_out_of_range.qbk 685 B

12345678910111213141516171819202122232425262728293031
  1. [#index_out_of_range]
  2. [section index_out_of_range]
  3. [h1 Synopsis]
  4. namespace error
  5. {
  6. template <int From, int To, int N>
  7. struct index_out_of_range;
  8. }
  9. This is a [link parsing_error_message parsing error message].
  10. [table Arguments
  11. [[Name] [Type]]
  12. [[`From`] [`int` value. The lower bound of the range.]]
  13. [[`To`] [`int` value. The upper bound of the range.]]
  14. [[`N`] [`int` value. The value outside of the range.]]
  15. ]
  16. [h1 Description]
  17. Template class representing an over or under indexing error. `From` and `To`
  18. represent the range and `N` is the value outside of the range.
  19. [h1 Header]
  20. #include <boost/metaparse/error/index_out_of_range.hpp>
  21. [endsect]