* ArrayWithCustomName returns an array encoder. It takes named start element as an argument, the named start element will used to wrap xml array entries. for eg, ` entry1 ` Here `customName` named start element will be wrapped on each array member. */
(element StartElement)
| 242 | Here `customName` named start element will be wrapped on each array member. |
| 243 | */ |
| 244 | func (xv Value) ArrayWithCustomName(element StartElement) *Array { |
| 245 | return newArray(xv.w, xv.scratch, element, xv.startElement, xv.isFlattened) |
| 246 | } |
| 247 | |
| 248 | /* |
| 249 | Map returns a map encoder. By default, the map entries are |