Sök…


Introduktion

Tips för golf i Groovy

Spread dot operator (*.)

Spread dot-operatören kan användas istället för metoden för insamling

(1..10)*.multiply(2) // equivalent to (1..10).collect{ it *2 }
d = ["hello", "world"]
d*.size() // d.collect{ it.size() }

Parallell behandling med Gpars

Gpars erbjuder intuitiva sätt att hantera uppgifter samtidigt

import groovyx.gpars.*
GParsPool.withPool { def result = dataList.collectParallel { processItem(it) } }


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow