ElectionPlace<TCandidate extends Comparable> constructor

ElectionPlace<TCandidate extends Comparable>(
  1. int place,
  2. List<TCandidate> candidates
)

Implementation

ElectionPlace(this.place, List<TCandidate> candidates)
    : assert(place > 0),
      assert(candidates.isNotEmpty),
      super(candidates);