StairLengthGeneratorConfigΒΆ
class StairLengthGeneratorConfig ( BaseLengthGeneratorConfig )
Emits values in the provided order, optionally repeating each value a fixed number of times before stepping to the next.
Polymorphic Type:
type: fixed_stairAll
BaseLengthGeneratorConfigtypes:
fixed: FixedLengthGeneratorConfig
fixed_stair: StairLengthGeneratorConfig
uniform: UniformLengthGeneratorConfig
inverse_gaussian: InverseGaussianLengthGeneratorConfig
Fields:
valueslist [ int ] =[8, 16, 32, 64]Ordered list of step values to emit.
repeat_eachint =1Number of consecutive emissions per step value before advancing.
wrapbool =TrueIf True, cycle back to the first value after the last. If False, keep returning the last value.