GetData function return all value of array
()
| 81 | |
| 82 | // GetData function return all value of array |
| 83 | func (da *DynamicArray) GetData() []any { |
| 84 | return da.ElementData[:da.Size] |
| 85 | } |
| 86 | |
| 87 | // CheckRangeFromIndex function it will check the range from the index |
| 88 | func (da *DynamicArray) CheckRangeFromIndex(index int) error { |
no outgoing calls