groovy
संग्रह संचालक
खोज…
एक संग्रह पर Iterate
सूचियाँ
def lst = ['foo', 'bar', 'baz']
// using implicit argument
lst.each { println it }
// using explicit argument
lst.each { val -> println val }
// both print:
// foo
// bar
// baz
सूचकांक के साथ Iterate
def lst = ['foo', 'bar', 'baz']
// explicit arguments are required
lst.eachWithIndex { val, idx -> println "$val in position $idx" }
// prints:
// foo in position 0
// bar in position 1
// baz in position 2
मैप्स
def map = [foo: 'FOO', bar: 'BAR', baz: 'BAZ']
// using implicit argument
map.each { println "key: ${it.key}, value: ${it.value}"}
// using explicit arguments
map.each { k, v -> println "key: $k, value: $v"}
// both print:
// key: foo, value: FOO
// key: bar, value: BAR
// key: baz, value: BAZ
संग्रह का उपयोग करके एक नई सूची बनाएं
def lst = ['foo', 'bar', 'baz']
lst.collect { it } // ['foo', 'bar', 'baz']
lst.collect { it.toUpperCase() } // ['FOO', 'BAR', 'BAZ']
नक्शे से कुंजियाँ या मान एकत्र करने के लिए
def map = [foo: 'FOO', bar: 'BAR', baz: 'BAZ']
def keys = map.collect { it.key } // ['foo', 'bar', 'baz']
def vals = map.collect { it.value } // ['FOO', 'BAR', 'BAZ']
उपरोक्त उदाहरण map.keySet()
और map.values()
कॉल करने के बराबर है
FindAll के साथ एक सूची फ़िल्टर करें
def lst = [10, 20, 30, 40]
lst.findAll { it > 25 } // [30, 40]
किसी शर्त से मेल खाने वाला पहला तत्व खोजें
def lst = [10, 20, 30, 40]
lst.find { it > 25 } // 30. Note: it returns a single value
संग्रह के साथ नक्शे बनाएँ
सूचियों से
def lst = ['foo', 'bar', 'baz']
// for each entry return a list containing [key, value]
lst.collectEntries { [it, it.toUpperCase()] } // [foo: FOO, bar: BAR, baz: BAZ]
// another option, return a map containing the single entry
lst.collectEntries { [(it): it.toUpperCase()] } // [foo: FOO, bar: BAR, baz: BAZ]
नक्शे से
def map = [foo: 'FOO', bar: 'BAR', baz: 'BAZ']
map.collectEntries { [it.key*2, it.value*2] } // [foofoo: FOOFOO, barbar: BARBAR, bazbaz: BAZBAZ]
// using explicit arguments k and v
map.collectEntries { k, v -> [k*2, v*2] } // [foofoo: FOOFOO, barbar: BARBAR, bazbaz: BAZBAZ]
नेस्टेड संग्रह में परिवर्तन लागू करें
गैर-संग्रह प्रविष्टियों में परिवर्तन लागू करें, नेस्टेड संग्रह में भी delving और संपूर्ण संरचना को संरक्षित करना।
def lst = ['foo', 'bar', ['inner_foo', 'inner_bar']]
lst.collectNested { it.toUpperCase() } // [FOO, BAR, [INNER_FOO, INNER_BAR]]
एक नेस्टेड सूची को समतल करें
def lst = ['foo', 'bar', ['inner_foo', 'inner_bar']]
lst.flatten() // ['foo', 'bar', 'inner_foo', 'inner_bar']
डुप्लिकेट निकालें
def lst = ['foo', 'foo', 'bar', 'baz']
// *modifies* the list removing duplicate items
lst.unique() // [foo, bar, baz]
// setting to false the "mutate" argument returns a new list, leaving the original intact
lst.unique(false) // [foo, bar, baz]
// convert the list to a Set, thus removing duplicates
lst.toSet() // [baz, bar, foo]
// defining a custom equality criteria. For example: to elements are equal if have the same first letter
println lst.unique() { it[0] } // [foo, bar]. 'bar' and 'baz' considered equal
दो सूचियों से एक मानचित्र बनाएँ
nrs = [1, 2, 3, 4, 5, 6, 7, 8, 9]
lets = ['a', 'b', 'c', 'd', 'e', 'f']
println GroovyCollections.transpose([nrs, lets])
.collect {le -> [(le[0]):le[1]]}.collectEntries { it }
or
println [nrs,lets].transpose().collectEntries{[it[0],it[1]]}
// [1:a, 2:b, 3:c, 4:d, 5:e, 6:f]
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow