Skip to content

Commit

Permalink
'sort' and 'sortByColumns' to reorder DataFrames #5
Browse files Browse the repository at this point in the history
cleaning up unused generics from sort method sigs
  • Loading branch information
andrus committed Mar 28, 2019
1 parent 57f4362 commit d69e58a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dflib/src/main/java/com/nhl/dflib/DataFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ default <V> DataFrame filterByColumn(String columnName, ValuePredicate<V> p) {

<V extends Comparable<? super V>> DataFrame sort(RowToValueMapper<V> sortKeyExtractor);

<V extends Comparable<? super V>> DataFrame sortByColumns(String... columns);
DataFrame sortByColumns(String... columns);

<V extends Comparable<? super V>> DataFrame sortByColumns(int... columns);
DataFrame sortByColumns(int... columns);

/**
* Horizontally concatenates a DataFrame with another DataFrame, producing a "wider" DataFrame. If the heights of
Expand Down

0 comments on commit d69e58a

Please sign in to comment.