(ctx context.Context, what string)
| 196 | } |
| 197 | |
| 198 | func (tmplContext *BulkTemplateContext) binExtractInt8(ctx context.Context, what string) (value int8) { |
| 199 | bin, success := tmplContext.binExtract(ctx, what, 1) |
| 200 | if !success { |
| 201 | return |
| 202 | } |
| 203 | return int8(bin[0]) |
| 204 | } |
| 205 | |
| 206 | func (tmplContext *BulkTemplateContext) binExtractUint8(ctx context.Context, what string) (value uint8) { |
| 207 | bin, success := tmplContext.binExtract(ctx, what, 1) |
no test coverage detected