generateParagraph2NL {wyz.code.rdoc}R Documentation

Function generateParagraph2NL

Description

Generate paragraph, collating provided contents with double new line.

Usage

generateParagraph2NL(..., addFinalSeparator_b_1 = FALSE)

Arguments

...

additional arguments.

addFinalSeparator_b_1

A single boolean value, asking to add an extraneous new line at the end of the computed string.

Value

A single string, with possibly many new line character embedded.

Author(s)

Fabien Gelineau <neonira@gmail.com>

Maintainer: Fabien Gelineau <neonira@gmail.com>

See Also

Functions generateParagraph and generateParagraphCR.

Examples

generateParagraph2NL(LETTERS[1:3])
# "A\n\nB\n\nC"

generateParagraph2NL(LETTERS[1:3], addFinalSeparator_b_1 = TRUE)
# "A\n\nB\n\nC\n\n"

[Package wyz.code.rdoc version 1.1.19 Index]