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

Alachisoft.NCache.Common.DataStructures.QEntry Maven / Gradle / Ivy

package Alachisoft.NCache.Common.DataStructures;

public class QEntry {

    public V Value;
    public QEntry Prev;
    public QEntry Next;

    public QEntry(V v) {
        Value = v;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy