Skip to content

Commit

Permalink
javadocs clarifying that "add" is not "concat" or "expand"
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Mar 30, 2024
1 parent 6e5df01 commit 448799f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dflib/src/main/java/org/dflib/DoubleSeries.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ default BooleanSeries ne(Series<?> s) {
}

/**
* Performs per-element addition between this and another DoubleSeries, returning the Series of the same
* length.
*
* @since 0.11
*/
default DoubleSeries add(DoubleSeries s) {
Expand Down
3 changes: 3 additions & 0 deletions dflib/src/main/java/org/dflib/IntSeries.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ default BooleanSeries ne(Series<?> s) {
}

/**
* Performs per-element addition between this and another IntSeries, returning the Series of the same
* length.
*
* @since 0.11
*/
default IntSeries add(IntSeries s) {
Expand Down
3 changes: 3 additions & 0 deletions dflib/src/main/java/org/dflib/LongSeries.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ default BooleanSeries ne(Series<?> s) {
}

/**
* Performs per-element addition between this and another LongSeries, returning the Series of the same
* length.
*
* @since 0.11
*/
default LongSeries add(LongSeries s) {
Expand Down

0 comments on commit 448799f

Please sign in to comment.