Skip to content

Commit

Permalink
Add an equivalent .getLongs() method to .getTimes()
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh-Zh-7 authored Apr 3, 2024
1 parent 4dd3742 commit 19b5d6e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ public long[] getTimes() {
return values;
}

@Override
public long[] getLongs() {
return getTimes();
}

@Override
public int getInstanceSize() {
return INSTANCE_SIZE;
Expand Down

0 comments on commit 19b5d6e

Please sign in to comment.