diff --git a/man/summary.typed_frame.Rd b/man/summary.typed_frame.Rd deleted file mode 100644 index 5fc606c..0000000 --- a/man/summary.typed_frame.Rd +++ /dev/null @@ -1,17 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/type.frame.R -\name{summary.typed_frame} -\alias{summary.typed_frame} -\title{Summary method for typed data frames} -\usage{ -\method{summary}{typed_frame}(x) -} -\arguments{ -\item{x}{A typed data frame.} -} -\value{ -Summary information of the typed data frame. -} -\description{ -Provides a summary of the typed data frame, including validation status. -} diff --git a/man/wrap_fun_in_all.Rd b/man/wrap_fun_in_all.Rd new file mode 100644 index 0000000..856e1dd --- /dev/null +++ b/man/wrap_fun_in_all.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/type.frame.R +\name{wrap_fun_in_all} +\alias{wrap_fun_in_all} +\title{Modify a user-defined function to return a single logical value} +\usage{ +wrap_fun_in_all(user_fun) +} +\arguments{ +\item{user_fun}{A user-defined function.} +} +\value{ +The modified function. +} +\description{ +Modifies a user-defined function to wrap its body in an all() call, ensuring that it returns a single logical value instead of a vector. + +It uses bquote() to create a new body for the function. +The .() inside bquote() inserts the original body of the function. +The all() function wraps around the original body. +}