Updated Library Documentation (markdown)

2025-09-02 13:47:20 +03:00
parent 3c289be404
commit 516ae0dd3b

@@ -712,6 +712,18 @@ for (const auto &entry : myMap) {
> Note: Direct use of `iterator` and `constant_iterator` is typically unnecessary; use range-based for loops.
##### Members
- `_entry *_data`: Pointer to internal array of partitions.
- `size_t _count, _capacity`: Internal counters.
##### Methods
- `insert(name, size, logical)`: Insert a partition.
- `merge(other)`: Merge another map.
- `clear()`: Clear all entries.
- `get_size(name)`, `is_logical(name)`, `get_all(name)`: Retrieve partition info.
- `find(name)`, `find_(name)`: Check existence.
- `size()`, `empty()`: Map size and empty check.
---
#### BuildMap (basic_partition_map_builder)