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

com.ajjpj.afoundation.collection.immutable.UpdateResult Maven / Gradle / Ivy

The newest version!
package com.ajjpj.afoundation.collection.immutable;

/**
 * @author arno
 */
class UpdateResult {
    final ABTreeMap left;
    final Object separator;
    final ABTreeMap optRight;

    public UpdateResult (ABTreeMap left, Object separator, ABTreeMap optRight) {
        this.left = left;
        this.separator = separator;
        this.optRight = optRight;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy