3 releases (breaking)
0.3.0 | May 30, 2024 |
---|---|
0.2.0 | Apr 18, 2024 |
0.1.0 | Jul 20, 2023 |
#321 in Rust patterns
Used in 5 crates
(3 directly)
130KB
3.5K
SLoC
Corlib
X | Twitch | Youtube | Mastodon | GitHub | GitHub Sponsors
Corlib is a various ideas library.
Library Contents:
NonOption
Like an option but not optional.
RcByPtr and WeakByPtr
Compare and hash Rc and Rc::Weak objects by pointer instead of by value.
RcDefault and ArcDefault
Default traits for returning reference counted types.
MovableText
For conveniently moving owned and static strings and string slices around.
AsStr
A trait with an as_str method.
Droppers
Structs for calling closures on drop.
GapFillingCounter
A counter that can recycle "gaps".
Getters Setters Callers
Macros for implementing getters, setters and calling methods on regular structs and RefCells.
HasOne
Sometimes you just want the value 1 (or 1.0).
Lazy
A struct for lazily initialising objects.
Does not contain its own initialising closure.
As Any
A trait with a method (as_any) for returning a &dyn Any instance of &self (comes with a handy implementation macro).
Get Some
Convert Options into certainty.
Inc Dec Macros
Miss the ++ and -- operators?
This module can help sort you out.
Collections
Collections and collection related objects.
Events
Events and event related objects. Inspred by .NET events.
Rfc
Macros and functions that help you work with RefCells.
Upgrading
Functions that help you deal with upgrading reference counted objects.
Todo:
- Add more documentation
- Add code examples
- Add more tests
- Add Hashmap and Hashset based event implementations
- Clean-up the code
- Solidify the API for 1.0
Coding Style
This project uses a coding style the emphasises the use of white space over keeping the line and column counts as low as possible.
So this:
fn foo()
{
bar();
}
Not this:
fn foo()
{
bar();
}
License
Licensed under either of:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0 (see also: https://www.tldrlegal.com/license/apache-license-2-0-apache-2-0))
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT (see also: https://www.tldrlegal.com/license/mit-license))
at your discretion
Contributing
Please clone the repository and create an issue explaining what feature or features you'd like to add or bug or bugs you'd like to fix and perhaps how you intend to implement these additions or fixes. Try to include details though it doesn't need to be exhaustive and we'll take it from there (dependant on availability).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~255–710KB
~17K SLoC