You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/aya/src/maps/array/mod.rs

11 lines
195 B
Rust

//! Array types.
#[expect(clippy::module_inception)]
mod array;
mod per_cpu_array;
mod program_array;
pub use array::*;
pub use per_cpu_array::PerCpuArray;
pub use program_array::ProgramArray;