konst/slice.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
//! `const fn` equivalents of slice methods.
/// `const fn`s for comparing slices for equality and ordering.
#[cfg(feature = "cmp")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "cmp")))]
pub mod cmp;
mod slice_const_methods;
mod slice_iter_methods;
pub use slice_const_methods::*;
pub use slice_iter_methods::*;
__declare_slice_cmp_fns! {
import_path = "konst",
(
///
/// # Example
///
,
/// ```rust
/// use konst::slice::eq_bytes;
///
/// const FOO: &[u8] = b"foo";
/// const BAR: &[u8] = b"fooooo";
/// const BAZ: &[u8] = b"bar";
///
///
/// const FOO_EQ_FOO: bool = eq_bytes(FOO, FOO);
/// assert!( FOO_EQ_FOO );
///
/// const FOO_EQ_BAR: bool = eq_bytes(FOO, BAR);
/// assert!( !FOO_EQ_BAR );
///
/// const FOO_EQ_BAZ: bool = eq_bytes(FOO, BAZ);
/// assert!( !FOO_EQ_BAZ );
///
/// ```
///
,
/// ```rust
/// use konst::slice::cmp_bytes;
///
/// use std::cmp::Ordering;
///
/// const FOO: &[u8] = b"foo";
/// const BAR: &[u8] = b"fooooo";
/// const BAZ: &[u8] = b"bar";
///
///
/// const FOO_CMP_FOO: Ordering = cmp_bytes(FOO, FOO);
/// assert_eq!(FOO_CMP_FOO, Ordering::Equal);
///
/// const FOO_CMP_BAR: Ordering = cmp_bytes(FOO, BAR);
/// assert_eq!(FOO_CMP_BAR, Ordering::Less);
///
/// const FOO_CMP_BAZ: Ordering = cmp_bytes(FOO, BAZ);
/// assert_eq!(FOO_CMP_BAZ, Ordering::Greater);
///
/// ```
///
,
u8,
eq_bytes,
cmp_bytes,
)
}
__declare_fns_with_docs! {
(Option<&'a [u8]>, (eq_option_bytes, cmp_option_bytes))
docs(default)
macro = __impl_option_cmp_fns!(
for['a,]
params(l, r)
eq_comparison = eq_bytes(l, r),
cmp_comparison = cmp_bytes(l, r),
parameter_copyability = copy,
),
}
/// Tries to convert from `&[T]` to `&[T; N]`, usable in `const`s, but not in `const fn`s.
///
/// Evaluates to an `Err(TryIntoArrayError{..})` when the slice doesn't match the expected length.
///
/// For an alternative that can be used in `const fn`s, there is the [`try_into_array`] function,
/// but it can only be used with the nightly compiler.
///
/// # Features
///
/// By default you need to pass the length of the returned array.
///
/// To infer the length of the array you need to enable the `"rust_1_51"` feature,
/// which requires Rust 1.51.0
///
/// # Example
///
/// ### Explicit length
///
/// ```rust
/// use konst::{
/// slice::{TryIntoArrayError, try_into_array},
/// result,
/// };
///
///
/// const ARR_5: Option<&[u64; 5]> = {
/// let slice: &[u64] = &[1, 10, 100, 1000, 10000];
///
/// result::ok!(try_into_array!(slice, 5))
/// };
///
/// assert_eq!(ARR_5, Some(&[1, 10, 100, 1000, 10000]));
///
///
/// const ERR: Result<&[u64; 5], TryIntoArrayError> = {
/// let slice: &[u64] = &[];
///
/// try_into_array!(slice, 5)
/// };
///
/// assert!(ERR.is_err());
///
/// ```
///
/// ### Slice constant to Array
///
/// ``` rust
/// use konst::{slice, unwrap_ctx};
///
/// const SLICE: &[u8] = b"Hello world!";
///
/// static ARRAY: [u8; SLICE.len()] = *unwrap_ctx!(slice::try_into_array!(SLICE, SLICE.len()));
///
/// assert_eq!(ARRAY, *b"Hello world!")
///
/// ```
///
/// ### Length inference
///
/// `try_into_array` can infer the length of the array with the
/// `"rust_1_51"` feature, which requires Rust 1.51.0.
///
#[cfg_attr(feature = "rust_1_51", doc = "```rust")]
#[cfg_attr(not(feature = "rust_1_51"), doc = "```ignore")]
/// use konst::{slice::try_into_array, unwrap_ctx};
///
/// const ARR_3: &[u64; 3] = {
/// let slice: &[u64] = &[3, 5, 8];
///
/// // Letting the macro infer the length of the array,
/// let array = unwrap_ctx!(try_into_array!(slice));
///
/// // You can destructure the array into its elements like this
/// let [a, b, c] = *array;
///
/// array
/// };
///
/// assert_eq!(ARR_3, &[3, 5, 8]);
///
/// ```
///
/// [`try_into_array`]: ./fn.try_into_array.html
/// [`include_bytes`]: https://doc.rust-lang.org/std/macro.include_bytes.html
#[doc(inline)]
pub use konst_macro_rules::try_into_array;
/// The error produced by trying to convert from
/// `&[T]` to `&[T; N]`, or from `&mut [T]` to `&mut [T; N]`.
#[doc(inline)]
pub use konst_macro_rules::slice_::TryIntoArrayError;
/// Tries to convert from `&[T]` to `&[T; N]`, usable in `const fn`s.
/// Requires the `"rust_1_56"` feature.
///
/// Returns an `Err(TryIntoArrayError{..})` when the slice doesn't match the expected length.
///
/// For an alternative that works on stable Rust, there is the [`try_into_array`] macro,
/// but it can only be used in `const`s, not in `const fn`s .
///
/// # Example
///
/// ```rust
/// use konst::{
/// slice::{TryIntoArrayError, try_into_array},
/// result,
/// unwrap_ctx,
/// };
///
///
/// const fn arr_5() -> Option<&'static [u64; 5]> {
/// let slice: &[u64] = &[1, 10, 100, 1000, 10000];
///
/// // Passing the length explicitly to the function
/// result::ok!(try_into_array::<_, 5>(slice))
/// }
///
/// assert_eq!(arr_5(), Some(&[1, 10, 100, 1000, 10000]));
///
///
/// const fn err() -> Result<&'static [u64; 5], TryIntoArrayError> {
/// let slice: &[u64] = &[];
///
/// // Letting the function infer the length of the array,
/// try_into_array(slice)
/// }
///
/// assert!(err().is_err());
///
///
/// const fn arr_3() -> &'static [u64; 3] {
/// let slice: &[u64] = &[3, 5, 8];
///
/// let array = unwrap_ctx!(try_into_array(slice));
///
/// // You can destructure the array into its elements like this
/// let [a, b, c] = *array;
///
/// array
/// }
///
/// assert_eq!(arr_3(), &[3, 5, 8]);
///
/// ```
///
/// [`try_into_array`]: ./macro.try_into_array.html
#[cfg(feature = "rust_1_56")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "rust_1_56")))]
#[doc(inline)]
pub use konst_macro_rules::slice_::try_into_array_func as try_into_array;
/// Tries to convert from `&mut [T]` to `&mut [T; N]`.
///
/// Returns an `Err(TryIntoArrayError{..})` when the slice doesn't match the expected length.
///
/// # Example
///
/// ```rust
/// # #![feature(const_mut_refs)]
/// use konst::{slice, unwrap_ctx};
///
/// const fn mut_array_from<const LEN: usize>(slice: &mut [u8], from: usize) -> &mut [u8; LEN] {
/// let sliced = slice::slice_range_mut(slice, from, from + LEN);
/// unwrap_ctx!(slice::try_into_array_mut(sliced))
/// }
///
/// # fn main() {
///
/// let slice = &mut [3, 5, 8, 13, 21, 34, 55, 89, 144, 233];
///
/// let foo: &mut [u8; 2] = mut_array_from(slice, 0);
/// assert_eq!(foo, &mut [3, 5]);
///
/// let bar: &mut [u8; 3] = mut_array_from(slice, 2);
/// assert_eq!(bar, &mut [8, 13, 21]);
///
/// let baz: &mut [u8; 4] = mut_array_from(slice, 4);
/// assert_eq!(baz, &mut [21, 34, 55, 89]);
///
/// # }
/// ```
///
#[cfg(feature = "mut_refs")]
#[cfg_attr(
feature = "docsrs",
doc(cfg(any(feature = "mut_refs", feature = "nightly_mut_refs")))
)]
#[doc(inline)]
pub use konst_macro_rules::slice_::try_into_array_mut_func as try_into_array_mut;