Skip to content

Commit

Permalink
Implement do_ and use as generic.
Browse files Browse the repository at this point in the history
Also includes some environment fixes I should've bundled before :/. Closes tidyverse#718
  • Loading branch information
hadley committed Nov 19, 2014
1 parent 12028d7 commit e620372
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ S3method(distinct_,grouped_dt)
S3method(distinct_,tbl_df)
S3method(distinct_,tbl_dt)
S3method(distinct_,tbl_sql)
S3method(do,"NULL")
S3method(do,data.frame)
S3method(do,data.table)
S3method(do,grouped_df)
S3method(do,grouped_dt)
S3method(do,rowwise_df)
S3method(do,tbl_dt)
S3method(do,tbl_sql)
S3method(do_,"NULL")
S3method(do_,data.frame)
S3method(do_,data.table)
S3method(do_,grouped_df)
S3method(do_,grouped_dt)
S3method(do_,rowwise_df)
S3method(do_,tbl_dt)
S3method(do_,tbl_sql)
S3method(escape,"NULL")
S3method(escape,Date)
S3method(escape,character)
Expand Down Expand Up @@ -336,6 +336,7 @@ export(dim_desc)
export(distinct)
export(distinct_)
export(do)
export(do_)
export(escape)
export(eval_tbls)
export(explain)
Expand Down

0 comments on commit e620372

Please sign in to comment.