read_fonts

Macro be_buffer

Source
macro_rules! be_buffer {
    ( $( $x:tt ),+ ) => { ... };
}
Available on crate feature std only.
Expand description

be_buffer!(val1, …, valn) - Constructs a BeBuffer from the provided list of values:

Values can be one of three types:

  1. Single numeric value, ie: 10u16
  2. Array of numeric values, ie: [1u8, 2, 3]
  3. Tagged value: {10u16, “tag_name”}. This will insert the numeric value and attach the provide string tag to the insertion location in the buffer.