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

io.paradoxical.cassieq.model.BucketPointer Maven / Gradle / Ivy

The newest version!
package io.paradoxical.cassieq.model;

public interface BucketPointer extends Pointer {
    default BucketPointer next(){
        return GenericBucketPointer.valueOf(get() + 1);
    }

    default MonotonicIndex startOf(BucketSize bucketsize){
        return MonotonicIndex.valueOf(get() * bucketsize.get());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy