Consumes characters until we have a gradient ID
(next_chr: char, param: String)
| 1241 | /// Consumes characters until we have a gradient ID |
| 1242 | /// |
| 1243 | fn decode_gradient_id(next_chr: char, param: String) -> Result<PartialResult<GradientId>, DecoderError> { |
| 1244 | Self::decode_compact_id(next_chr, param) |
| 1245 | .map(|id| id.map(|id| GradientId(id))) |
| 1246 | } |
| 1247 | |
| 1248 | /// |
| 1249 | /// Decodes a font drawing command |
nothing calls this directly
no test coverage detected