* @param {boolean[]} arr * @param {PbfWriter} pbf
(arr, pbf)
| 687 | * @param {PbfWriter} pbf |
| 688 | */ |
| 689 | function writePackedBoolean(arr, pbf) { |
| 690 | for (let i = 0; i < arr.length; i++) pbf.writeBoolean(arr[i]); |
| 691 | } |
| 692 | /** |
| 693 | * @param {number[]} arr |
| 694 | * @param {PbfWriter} pbf |
nothing calls this directly
no test coverage detected
searching dependent graphs…