bevy_reflectFunction array_debug
Source pub fn array_debug(dyn_array: &dyn Array, f: &mut Formatter<'_>) -> Result
Expand description
The default debug formatter for Array
types.
ยงExample
use bevy_reflect::Reflect;
let my_array: &dyn Reflect = &[1, 2, 3];
println!("{:#?}", my_array);