[][src]Module data_reader::reader::int_reader

Functions

load_txt_i8

load_txt_i8 reads in a data file that is made up of i8 type data. If this assumption is not made then the parser will fail during the conversion between strings to i8. It can also fail in a number of other ways related to invalid parameters or the data file having malformed fields. These errors are percolated up to whatever is calling this in the form of the Error type. One should therefore check to make sure no errors are obtained when examining the file. If a malformed field is seen the error does contain information about what line number of the data file has the malformed field.

load_txt_i16

load_txt_i16 reads in a data file that is made up of i16 type data. If this assumption is not made then the parser will fail during the conversion between strings to i16. It can also fail in a number of other ways related to invalid parameters or the data file having malformed fields. These errors are percolated up to whatever is calling this in the form of the Error type. One should therefore check to make sure no errors are obtained when examining the file. If a malformed field is seen the error does contain information about what line number of the data file has the malformed field.

load_txt_i32

load_txt_i32 reads in a data file that is made up of i32 type data. If this assumption is not made then the parser will fail during the conversion between strings to i32. It can also fail in a number of other ways related to invalid parameters or the data file having malformed fields. These errors are percolated up to whatever is calling this in the form of the Error type. One should therefore check to make sure no errors are obtained when examining the file. If a malformed field is seen the error does contain information about what line number of the data file has the malformed field.

load_txt_i64

load_txt_i64 reads in a data file that is made up of i64 type data. If this assumption is not made then the parser will fail during the conversion between strings to i64. It can also fail in a number of other ways related to invalid parameters or the data file having malformed fields. These errors are percolated up to whatever is calling this in the form of the Error type. One should therefore check to make sure no errors are obtained when examining the file. If a malformed field is seen the error does contain information about what line number of the data file has the malformed field.

load_txt_i128

load_txt_i128 reads in a data file that is made up of i128 type data. If this assumption is not made then the parser will fail during the conversion between strings to i128. It can also fail in a number of other ways related to invalid parameters or the data file having malformed fields. These errors are percolated up to whatever is calling this in the form of the Error type. One should therefore check to make sure no errors are obtained when examining the file. If a malformed field is seen the error does contain information about what line number of the data file has the malformed field.