Closed vascofg closed 6 years ago
This adds some methods I found necessary to avoid some crappy hacks on the pipelines:
join('separator', list)
concat(list1, list2)
flatten(list)
Very cool. Thanks @vascofg!
This adds some methods I found necessary to avoid some crappy hacks on the pipelines:
join('separator', list)
takes a list, converts all items to strings and joins them by the provided separatorconcat(list1, list2)
takes two lists and concatenates them togetherflatten(list)
takes a list of lists and flattens it