Array is a slice of of records that implements the Batch and the Reader interfaces.
| 8 | // Array is a slice of of records that implements the Batch and |
| 9 | // the Reader interfaces. |
| 10 | type Array struct { |
| 11 | values []super.Value |
| 12 | } |
| 13 | |
| 14 | var _ Batch = (*Array)(nil) |
| 15 | var _ sio.Reader = (*Array)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected