Skip to content

Commit

Permalink
added select multiple columns to zframe
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalgoyal committed Oct 23, 2023
1 parent 7cfb69d commit ab9ade1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public interface ZFrame<D, R, C> {
public ZFrame<D, R, C> cache();
public ZFrame<D, R, C> as(String s);
public String[] columns();
public ZFrame<D, R, C> select(C... cols);
public ZFrame<D, R, C> select(String... string);
public ZFrame<D, R, C> select(List<C> cols);
public ZFrame<D, R, C> select(String col, String... cols);
public ZFrame<D, R, C> select(String col);
Expand Down

0 comments on commit ab9ade1

Please sign in to comment.