bounded_collections/
lib.rs1#![cfg_attr(not(feature = "std"), no_std)]
13
14pub extern crate alloc;
15
16pub mod bounded_btree_map;
17pub mod bounded_btree_set;
18pub mod bounded_vec;
19pub mod const_int;
20pub mod weak_bounded_vec;
21
22mod test;
23
24pub use bounded_btree_map::BoundedBTreeMap;
25pub use bounded_btree_set::BoundedBTreeSet;
26pub use bounded_vec::{BoundedSlice, BoundedVec};
27pub use const_int::{ConstInt, ConstUint};
28pub use weak_bounded_vec::WeakBoundedVec;
29
30pub trait TypedGet {
34 type Type;
36 fn get() -> Self::Type;
38}
39
40pub trait Get<T> {
44 fn get() -> T;
46}
47
48impl<T: Default> Get<T> for () {
49 fn get() -> T {
50 T::default()
51 }
52}
53
54pub struct GetDefault;
56impl<T: Default> Get<T> for GetDefault {
57 fn get() -> T {
58 T::default()
59 }
60}
61
62macro_rules! impl_const_get {
63 ($name:ident, $t:ty) => {
64 #[derive(Default, Clone)]
66 pub struct $name<const T: $t>;
67
68 #[cfg(feature = "std")]
69 impl<const T: $t> core::fmt::Debug for $name<T> {
70 fn fmt(&self, fmt: &mut core::fmt::Formatter) -> core::fmt::Result {
71 fmt.write_str(&format!("{}<{}>", stringify!($name), T))
72 }
73 }
74 #[cfg(not(feature = "std"))]
75 impl<const T: $t> core::fmt::Debug for $name<T> {
76 fn fmt(&self, fmt: &mut core::fmt::Formatter) -> core::fmt::Result {
77 fmt.write_str("<wasm:stripped>")
78 }
79 }
80 impl<const T: $t> Get<$t> for $name<T> {
81 fn get() -> $t {
82 T
83 }
84 }
85 impl<const T: $t> Get<Option<$t>> for $name<T> {
86 fn get() -> Option<$t> {
87 Some(T)
88 }
89 }
90 impl<const T: $t> TypedGet for $name<T> {
91 type Type = $t;
92 fn get() -> $t {
93 T
94 }
95 }
96 };
97}
98
99impl_const_get!(ConstBool, bool);
100impl_const_get!(ConstU8, u8);
101impl_const_get!(ConstU16, u16);
102impl_const_get!(ConstU32, u32);
103impl_const_get!(ConstU64, u64);
104impl_const_get!(ConstU128, u128);
105impl_const_get!(ConstI8, i8);
106impl_const_get!(ConstI16, i16);
107impl_const_get!(ConstI32, i32);
108impl_const_get!(ConstI64, i64);
109impl_const_get!(ConstI128, i128);
110
111pub trait TryCollect<C> {
113 type Error;
115 fn try_collect(self) -> Result<C, Self::Error>;
120}
121
122#[macro_export]
174macro_rules! parameter_types {
175 (
176 $( #[ $attr:meta ] )*
177 $vis:vis const $name:ident: $type:ty = $value:expr;
178 $( $rest:tt )*
179 ) => (
180 $( #[ $attr ] )*
181 $vis struct $name;
182 $crate::parameter_types!(@IMPL_CONST $name , $type , $value);
183 $crate::parameter_types!( $( $rest )* );
184 );
185 (
186 $( #[ $attr:meta ] )*
187 $vis:vis $name:ident: $type:ty = $value:expr;
188 $( $rest:tt )*
189 ) => (
190 $( #[ $attr ] )*
191 $vis struct $name;
192 $crate::parameter_types!(@IMPL $name, $type, $value);
193 $crate::parameter_types!( $( $rest )* );
194 );
195 () => ();
196 (@IMPL_CONST $name:ident, $type:ty, $value:expr) => {
197 impl $name {
198 pub const fn get() -> $type {
200 $value
201 }
202 }
203
204 impl<I: From<$type>> $crate::Get<I> for $name {
205 fn get() -> I {
206 I::from(Self::get())
207 }
208 }
209
210 impl $crate::TypedGet for $name {
211 type Type = $type;
212 fn get() -> $type {
213 Self::get()
214 }
215 }
216 };
217 (@IMPL $name:ident, $type:ty, $value:expr) => {
218 impl $name {
219 pub fn get() -> $type {
221 $value
222 }
223 }
224
225 impl<I: From<$type>> $crate::Get<I> for $name {
226 fn get() -> I {
227 I::from(Self::get())
228 }
229 }
230
231 impl $crate::TypedGet for $name {
232 type Type = $type;
233 fn get() -> $type {
234 Self::get()
235 }
236 }
237 };
238}
239
240#[macro_export]
247#[cfg(feature = "std")]
248macro_rules! bounded_vec {
249 ($ ($values:expr),* $(,)?) => {
250 {
251 $crate::alloc::vec![$($values),*].try_into().unwrap()
252 }
253 };
254 ( $value:expr ; $repetition:expr ) => {
255 {
256 $crate::alloc::vec![$value ; $repetition].try_into().unwrap()
257 }
258 }
259}
260
261#[macro_export]
268#[cfg(feature = "std")]
269macro_rules! bounded_btree_map {
270 ($ ( $key:expr => $value:expr ),* $(,)?) => {
271 {
272 $crate::TryCollect::<$crate::BoundedBTreeMap<_, _, _>>::try_collect(
273 $crate::alloc::vec![$(($key, $value)),*].into_iter()
274 ).unwrap()
275 }
276 };
277}