1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/printr.R
\name{indent_print}
\alias{indent_print}
\title{Indent a printout}
\usage{
indent_print(..., .indent = " ", .printer = print)
}
\arguments{
\item{...}{Passed to the printing function.}
\item{.indent}{Character scalar, indent the printout with this.}
\item{.printer}{The printing function, defaults to \link{print}.}
}
\value{
The first element in \code{...}, invisibly.
}
\description{
Indent a printout
}
|