https://github.com/hadley/dplyr
Raw File
Tip revision: 1afefd9f094bbbe34e2537c874d5848c0e3f8380 authored by hadley on 14 March 2014, 19:25:04 UTC
Bump version and tweak news
Tip revision: 1afefd9
failwith.Rd
% Generated by roxygen2 (4.0.0): do not edit by hand
\name{failwith}
\alias{failwith}
\title{Fail with specified value.}
\usage{
failwith(default = NULL, f, quiet = FALSE)
}
\arguments{
  \item{default}{default value}

  \item{f}{function}

  \item{quiet}{all error messages be suppressed?}
}
\value{
a function
}
\description{
Modify a function so that it returns a default value when there is an
error.
}
\examples{
f <- function(x) if (x == 1) stop("Error!") else 1
\dontrun{
f(1)
f(2)
}

safef <- failwith(NULL, f)
safef(1)
safef(2)
}
\seealso{
\code{\link[plyr]{try_default}}
}
\keyword{debugging}

back to top