patterns icon indicating copy to clipboard operation
patterns copied to clipboard

Add combinations pattern

Open pditommaso opened this issue 6 years ago • 0 comments

Channel.from([['A', 10], ['B', 8], ['C', 5], ['D', 4]])
  .toList().map{ [it, it].combinations().findAll{ a, b -> a[1] < b[1]} }
  .flatMap()
  .view()

pditommaso avatar Nov 07 '19 20:11 pditommaso