Function bevy_reflect::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);

// Output:

// [
//   1,
//   2,
//   3,
// ]