Sunday, March 18, 2018
Groovy Closure Contd..
// supplying closure to each
def total = 0
(1..10).each { num -> total += num }
assert (1..10).sum() == total
total = 0
(1..10).each { total += it }
assert (1..10).sum() == total
// calling a closure
def echo = { it }
assert "Hello" == echo('Hello')
assert "Hello" == echo.call('Hello')
// currying closures
def sumN = { n,list -> list[0..n-1].sum() }
assert sumN(1, [1,2,3]) == 1
assert sumN(2, [1,2,3]) == 3
assert sumN(3, [1,2,3]) == 6
def sum3 = sumN.curry(3)
assert sum3([1,2,3,4,5]) == 6
// Simple curry.
def addNumbers = { x, y -> x + y }
def addOne = addNumbers.curry(1)
assert 5 == addOne(4)
Subscribe to:
Post Comments (Atom)
உப்பு மாங்காய்
சுருக்குப்பை கிழவி. சுருக்கங்கள் சூழ் கிழவி. பார்க்கும் போதெல்லாம் கூடையுடனே குடியிருப்பாள். கூடை நிறைய குட்டி குட்டி மாங்காய்கள். வெட்டிக்க...
-
கந்தன் வேலைக்குச் சென்று கிட்டத்தட்ட பத்து ஆண்டுகளுக்கு பிறகு சொந்த ஊர் திரும்பி இருந்தான். காளிக் கோயிலைத் தாண்டி தான் அவன் வீட்ட...
-
பிரேமாவின் மூத்த ஆண் குழந்தைக்கு முன் பிறந்த இளைய பெண் குழந்தை அவள். வயலும் சேறும் இரண்டற கலந்த ஊர். முழுதாய் மூன்றாம் வகுப்பைத் ...
No comments:
Post a Comment