populator static method

SignMagnitudeValuePopulator<SignMagnitudeValue> populator({
  1. required int width,
})

Creates a SignMagnitudeValuePopulator with the provided width which can then be used to complete construction of a SignMagnitudeValue using population functions.

Implementation

static SignMagnitudeValuePopulator populator({required int width}) =>
    SignMagnitudeValuePopulator(
        SignMagnitudeValue.uninitialized()..width = width);