Skip to main content

il2cpp_bridge_rs/structs/collections/
mod.rs

1//! IL2CPP Collection types exports
2//!
3//! This module contains wrappers for standard IL2CPP collection types:
4//! - `Il2cppArray`: Fixed-size arrays
5//! - `Il2cppList`: Dynamic lists (generics)
6//! - `Il2cppDictionary`: Key-value dictionaries (generics)
7//! - `Il2cppString`: IL2CPP string implementation
8pub mod array;
9pub mod dictionary;
10pub mod list;
11pub mod string;
12
13pub use array::Il2cppArray;
14pub use dictionary::Il2cppDictionary;
15pub use list::Il2cppList;
16pub use string::Il2cppString;