Array represents the encoding of a XML array type
| 7 | |
| 8 | // Array represents the encoding of a XML array type |
| 9 | type Array struct { |
| 10 | w writer |
| 11 | scratch *[]byte |
| 12 | |
| 13 | // member start element is the array member wrapper start element |
| 14 | memberStartElement StartElement |
| 15 | |
| 16 | // isFlattened indicates if the array is a flattened array. |
| 17 | isFlattened bool |
| 18 | } |
| 19 | |
| 20 | // newArray returns an array encoder. |
| 21 | // It also takes in the member start element, array start element. |
nothing calls this directly
no outgoing calls
no test coverage detected