45 lines
1.4 KiB
Markdown
45 lines
1.4 KiB
Markdown
# refactor
|
|
|
|
- try to remove unnecessary uses of cloned()
|
|
- use expand, expand_cloned and cloned_bounds everywhere
|
|
- replace instances of |(key, \_)| with fn first()
|
|
- rename overwrite to insert_forceful
|
|
- make all iterators cutsom types as is standardised in libraries for
|
|
some reason(?)
|
|
- take a look around idiomatic rust for a bit
|
|
- review method parameter names for all public functions
|
|
|
|
# optimisations
|
|
|
|
- make a StartBoundWrapper that uses BoundOrd to implement ord and
|
|
use that instead of storing the startbound twice
|
|
|
|
# Documentation
|
|
|
|
- replace `RangeBounds` with `K` where applicatble in docs
|
|
- replace rust types URL links with direct rust links
|
|
|
|
# features
|
|
|
|
- make specifc RangeMap, RangeSet, RangeInclusiveMap... types for signature
|
|
simplification - alternatively add just the one generic SafeRangeBoundsMap + Set that
|
|
just add unwraps everywhere to simplify signatures on known-"Safe"
|
|
symmetric types such as Range
|
|
- add rangemap's insert function to finally make range_bounds_map a superset of rangemap
|
|
|
|
- add append() split_off() etc..
|
|
|
|
# open questions
|
|
|
|
- should we implement FromIterator? If so which insert should we use?
|
|
(At the moment we do implement it using insert_platonic())
|
|
|
|
#### PUBLISH
|
|
|
|
# after publish tasks
|
|
|
|
- add links to [`RangeBoundsSet`] and map after docs.rs is live with
|
|
the docs, and generally check for dead links on docs and readme
|
|
- tell people in issues of other rangemap libraries about my library
|
|
stonks advertising
|