TTMultiMapList<V> constructor

TTMultiMapList<V>({
  1. KeyMapping keyMapping = identity,
})

Construct a new TTMultiMapList with an optional keyMapping

Implementation

TTMultiMapList({KeyMapping keyMapping = identity})
    : super(
          (Iterable<int> runes, Random priorityGenerator, Node<V>? parent,
                  final HashSet<RunePoolEntry> _runePool) =>
              NodeList<V>(runes, priorityGenerator, parent, _runePool),
          keyMapping);