This commit is contained in:
agra
2026-04-23 13:21:44 +03:00
parent 7e0b9a6330
commit ae21d81eab
5 changed files with 291 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
### 0.7.0
- `AutoMap<K, V>`: insertion-ordered collection with O(1) lookup by key
**and** by index. Backed by a `List<V>` + `Map<K, int>` kept in sync by
four mutation methods (`add`, `addAll`, `remove`, `clear`); both fields
are private so callers cannot break the invariant. Extends `Iterable<V>`
for `where` / `map` / `firstWhere` / etc. `remove` is O(n) to preserve
order; every other op is O(1).
### 0.6.0
- `UxFile`: new module for handing files to the OS
- `UxFile.share(path, {title, mimeType, sourceRect})` — iOS `UIActivityViewController`,