devela/data/iter/
namespace.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
// devela::data::iter::namespace
//
//! Defines the [`Iter`] namespace.
//
// WAIT: [iter_chain](https://github.com/rust-lang/rust/issues/125964)
// TODO

// DELETE
// #[allow(unused_imports, reason = "unsafe feature-gated")]
// use crate::_core::{
//     mem::{transmute_copy, zeroed},
//     slice::{from_raw_parts, from_raw_parts_mut},
// };
// use crate::{
//     Discriminant,
//     _core::mem::{
//         align_of, align_of_val, discriminant, drop, forget, needs_drop, replace, size_of,
//         size_of_val, swap, take,
//     },
// };

#[doc = crate::TAG_NAMESPACE!()]
/// Iterator-related namespaced operations.
pub struct Iter;

/// # Core methods.
impl Iter {
    // /// Returns the minimum alignment of the type in bytes.
    // ///
    // /// See `core::mem::`[`align_of`].
    // #[must_use]
    // pub const fn align_of<T>() -> usize {
    //     align_of::<T>()
    // }

}

/// # itertool methods
///
/// ## Features
/// They depend on enabling the `dep_itertools` feature.
#[cfg(feature = "dep_itertools")]
impl Iter {
}