list_merge

hhpy.main.list_merge(*args, unique: bool = True, flatten: bool = False) → list[source]

Merges n lists together

Parameters:
  • args – The lists to be merged together
  • unique – if True then duplicate elements will be dropped
  • flatten – if True then the individual lists will be flatten before merging
Returns:

The merged list