public void checkFamilyID()

in src/main/java/org/apache/datasketches/vector/MatrixFamily.java [83:89]


  public void checkFamilyID(final int id) {
    if (id != id_) {
      throw new IllegalArgumentException(
              "Possible Corruption: This Family " + toString()
                      + " does not match the ID of the given Family: " + idToFamily(id).toString());
    }
  }