You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
399B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/tidyr_helpers.R
  3. \name{dput_parser}
  4. \alias{dput_parser}
  5. \title{Parses a simple vector so that it looks like its input}
  6. \usage{
  7. dput_parser(x)
  8. }
  9. \arguments{
  10. \item{x}{a vector}
  11. }
  12. \value{
  13. a string
  14. }
  15. \description{
  16. Parses a simple vector so that it looks like its input
  17. }
  18. \examples{
  19. dput_parser("x")
  20. dput_parser(c("x", "y"))
  21. }