rswizzle function

  1. @Deprecated('Use `List<Logic>.rswizzle()` instead')
Logic rswizzle(
  1. List<Logic> signals
)

Performs a concatenation operation on the list of signals, where index 0 of signals is the least significant bit(s).

This is the one you should probably use if you're trying to concatenate a generated List of signals. If you write rswizzle([a, b, c]) you would get a single output Logic where the bits in a are the least significant (lowest) bits.

If you want the opposite, check out swizzle().

Implementation

@Deprecated('Use `List<Logic>.rswizzle()` instead')
Logic rswizzle(List<Logic> signals) => signals.rswizzle();