diff --git a/man/check_arg_type.Rd b/man/check_arg_type.Rd new file mode 100644 index 0000000..df793b0 --- /dev/null +++ b/man/check_arg_type.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/export_manifest.R +\name{check_arg_type} +\alias{check_arg_type} +\title{check_arg_type} +\usage{ +check_arg_type(arg) +} +\arguments{ +\item{arg}{object to check. Lists will be checked recursively, and must be +named.} +} +\value{ +the same object, unchanged. Function will throw an error if objects are not simple +} +\description{ +Check that arguments are nicely coercible to JSON. Primarily a check that +lists are composed of simple types (other lists, characters, +numeric/integers, or logicals). Called for side effect of \code{stop} if not. +} diff --git a/man/un_asis.Rd b/man/un_asis.Rd new file mode 100644 index 0000000..c42516e --- /dev/null +++ b/man/un_asis.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/export_manifest.R +\name{un_asis} +\alias{un_asis} +\title{un_asis} +\usage{ +un_asis(x) +} +\arguments{ +\item{x}{an object (with the \code{AsIs} class)} +} +\value{ +the same object, without AsIs class +} +\description{ +Remove AsIs class from object +}