//! # Cache
//!//! Memory that is used not to re-allocate,
//! it represents 256 KB of memory which can fit into cache.
// Structures.
pubstructCache([i32; 0x10000]);// Implementations.
implCache{pubfnnew()->Self{Self([0;0x10000])}pubfninner_mut(&mutself)->&mut[i32;0x10000]{&mutself.0}}