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

com.yahoo.sketches.tuple.strings.ArrayOfStringsSummarySetOperations Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
/*
 * Copyright 2019, Yahoo! Inc. Licensed under the terms of the
 * Apache License 2.0. See LICENSE file at the project root for terms.
 */

package com.yahoo.sketches.tuple.strings;

import com.yahoo.sketches.tuple.SummarySetOperations;

/**
 * @author Lee Rhodes
 */
public class ArrayOfStringsSummarySetOperations implements SummarySetOperations {

  @Override
  public ArrayOfStringsSummary union(final ArrayOfStringsSummary a, final ArrayOfStringsSummary b) {
    return a.copy();
  }

  @Override
  public ArrayOfStringsSummary intersection(final ArrayOfStringsSummary a, final ArrayOfStringsSummary b) {
    return a.copy();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy