ParallelPrefix constructor

ParallelPrefix(
  1. List<Logic> inps,
  2. String name
)

ParallePrefix recursion

Implementation

ParallelPrefix(List<Logic> inps, String name) : super(name: name) {
  if (inps.isEmpty) {
    throw Exception("Don't use {name} with an empty sequence");
  }
}