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

com.yahoo.sketches.tuple.DirectArrayOfDoublesUnionR Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package com.yahoo.sketches.tuple;

import com.yahoo.memory.WritableMemory;
import com.yahoo.sketches.SketchesReadOnlyException;

final class DirectArrayOfDoublesUnionR extends DirectArrayOfDoublesUnion {

  /**
   * Wraps the given Memory.
   * @param sketch the ArrayOfDoublesQuickSelectSketch
   * @param mem See Memory
   */
  DirectArrayOfDoublesUnionR(final ArrayOfDoublesQuickSelectSketch sketch, final WritableMemory mem) {
    super(sketch, mem);
  }

  @Override
  public void update(final ArrayOfDoublesSketch sketchIn) {
    throw new SketchesReadOnlyException();
  }

  @Override
  public void reset() {
    throw new SketchesReadOnlyException();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy