Lines Matching defs:float
11 //! own project. It is meant to show how to implement a float parser
119 /// Parse the exponent of the float.
148 /// Parse float from input bytes, returning the float and the remaining bytes.
150 /// * `bytes` - Array of bytes leading with float-data.
158 // Note: this does not handle special float values.
162 // Extract and parse the float components:
181 // Note: You may want to check and validate the float data here:
196 // Create the float and return our data.
197 let mut float: F =
200 float = -float;
203 (float, bytes)