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

net.openhft.chronicle.set.SetEntryOperations Maven / Gradle / Ivy

package net.openhft.chronicle.set;

import org.jetbrains.annotations.NotNull;

public interface SetEntryOperations {
    
    default R remove(@NotNull SetEntry entry) {
        entry.doRemove();
        return null;
    }
    
    default R insert(@NotNull SetAbsentEntry entry) {
        entry.doInsert();
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy