fastquadtree.InsertResult¶
Result returned from bulk insertion operations.
This dataclass contains information about items inserted by insert_many or insert_many_np methods, including the total count and the contiguous range of auto-assigned IDs.
Attributes:
| Name | Type | Description |
|---|---|---|
count | int | Number of items successfully inserted. |
start_id | int | First ID in the contiguous ID range. |
end_id | int | Last ID in the contiguous ID range (inclusive). |