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

com.thejohnfreeman.attribute.Attribute Maven / Gradle / Ivy

Go to download

A library for type-safe, tractable lazy evaluation and late binding in Java.

The newest version!
package com.thejohnfreeman.attribute;

import com.thejohnfreeman.lazy.Lazy;

public interface Attribute
{
    Lazy get(N node);

    void put(N node, Lazy value) throws IllegalStateException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy