com.github.mperry.fg.Yield.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalgroovy-main Show documentation
Show all versions of functionalgroovy-main Show documentation
FunctionalGroovy enhances FunctionalJava for Groovy
package com.github.mperry.fg
import groovy.transform.TypeChecked
import groovy.transform.Canonical
/**
* Created with IntelliJ IDEA.
* User: MarkPerry
* Date: 24/02/13
* Time: 9:54 PM
* To change this template use File | Settings | File Templates.
*/
//@TypeChecked
@Canonical
@TypeChecked
class Yield {
Map values = [:]
Closure closure
Object propertyMissing(String name) {
values[name]
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy