(idx valueInt, throw bool)
| 415 | } |
| 416 | |
| 417 | func (a *sparseArrayObject) deleteIdx(idx valueInt, throw bool) bool { |
| 418 | if idx := toIdx(idx); idx != math.MaxUint32 { |
| 419 | return a._deleteIdxProp(idx, throw) |
| 420 | } |
| 421 | return a.baseObject.deleteStr(idx.string(), throw) |
| 422 | } |
| 423 | |
| 424 | func (a *sparseArrayObject) sortLen() int { |
| 425 | if len(a.items) > 0 { |
nothing calls this directly
no test coverage detected