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