All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graph.Weight.groovy Maven / Gradle / Ivy

There is a newer version: 0.27.0
Show newest version
package graph

trait Weight {

    private Closure weight

    int getWeight() {
        weight.delegate = this
        weight.call()
    }

    def weight(Closure c) {
        weight = c
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy