You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2021/05/25 19:38:35 UTC

[datasketches-java] branch print_ordered_flag created (now c586c2d)

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a change to branch print_ordered_flag
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git.


      at c586c2d  print isOrdered flag

This branch includes the following new commits:

     new c586c2d  print isOrdered flag

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[datasketches-java] 01/01: print isOrdered flag

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch print_ordered_flag
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit c586c2d515400141243c35f1dc2f3e4bd26dd193
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Tue May 25 12:38:17 2021 -0700

    print isOrdered flag
---
 src/main/java/org/apache/datasketches/theta/Sketch.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/datasketches/theta/Sketch.java b/src/main/java/org/apache/datasketches/theta/Sketch.java
index 12541df..46298f0 100644
--- a/src/main/java/org/apache/datasketches/theta/Sketch.java
+++ b/src/main/java/org/apache/datasketches/theta/Sketch.java
@@ -535,6 +535,7 @@ public abstract class Sketch {
       sb.append("   Theta (long) hex        : ").append(thetaHex).append(LS);
       sb.append("   EstMode?                : ").append(isEstimationMode()).append(LS);
       sb.append("   Empty?                  : ").append(isEmpty()).append(LS);
+      sb.append("   Ordered?                : ").append(isOrdered()).append(LS);
       if (updateSketch) {
         sb.append("   Resize Factor           : ").append(rf).append(LS);
         sb.append("   Array Size Entries      : ").append(arrLongs).append(LS);

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org