1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/stack.R
3\name{call_inspect}
4\alias{call_inspect}
5\title{Inspect a call}
6\usage{
7call_inspect(...)
8}
9\arguments{
10\item{...}{Arguments to display in the returned call.}
11}
12\description{
13This function is useful for quick testing and debugging when you
14manipulate expressions and calls. It lets you check that a function
15is called with the right arguments. This can be useful in unit
16tests for instance. Note that this is just a simple wrapper around
17\code{\link[base:match.call]{base::match.call()}}.
18}
19\examples{
20call_inspect(foo(bar), "" \%>\% identity())
21}
22