* Initializes an elementwriter to write to the current index of an array. */
| 1622 | * Initializes an elementwriter to write to the current index of an array. |
| 1623 | */ |
| 1624 | void |
| 1625 | PgbsonInitArrayElementWriter(pgbson_array_writer *arrayWriter, |
| 1626 | pgbson_element_writer *elementWriter) |
| 1627 | { |
| 1628 | elementWriter->isArray = true; |
| 1629 | elementWriter->arrayWriter = arrayWriter; |
| 1630 | } |
| 1631 | |
| 1632 | |
| 1633 | /* |
no outgoing calls
no test coverage detected