com.github.romanqed.jutils.structs.Link Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jutils Show documentation
Show all versions of jutils Show documentation
A set of simple utilities for implementing missing functionality in different versions of Java.
package com.github.romanqed.jutils.structs;
public interface Link {
void attach(T tail);
Link detach();
Link tail();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy