Writes a boolean value into `buf`. `true` is encoded as the char `'t'` and `false` is encoded as the char `'f'`.
(buf: &mut F, b: bool)
| 103 | /// `true` is encoded as the char `'t'` and `false` is encoded as the char |
| 104 | /// `'f'`. |
| 105 | pub fn format_bool<F>(buf: &mut F, b: bool) -> Nestable |
| 106 | where |
| 107 | F: FormatBuffer, |
| 108 | { |
| 109 | buf.write_str(format_bool_static(b)); |
| 110 | Nestable::Yes |
| 111 | } |
| 112 | |
| 113 | /// Parses an [`i16`] from `s`. |
| 114 | /// |
no test coverage detected