Len returns the length of the Datum array.
()
| 1734 | |
| 1735 | // Len returns the length of the Datum array. |
| 1736 | func (d *DArray) Len() int { |
| 1737 | return len(d.Array) |
| 1738 | } |
| 1739 | |
| 1740 | // Size implements the Datum interface. |
| 1741 | func (d *DArray) Size() uintptr { |