helloworld-methods: The title, in this case: Helloworld-ify the argument.

Description Usage Arguments Value See Also Examples

Description

Some additional details about this S4 generic and its The extra blank line between this section and the title is critical for roxygen2 to differentiate the title from the description section.

Usage

1
  helloworld(x, y, ...)

Arguments

x

Description of x. The main argument in this example. Most often has such and such properties.

y

Description of y. An argument that is rarely used by "helloworld" methods.

...

Additional argument list that might not ever be used.

Value

A helloworld-ified argument. Oh, you'll see.

See Also

print and cat

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
helloworld("thisismystring")
helloworld(char2helloworld("thisismystring"))
helloworld(matrix(0,3,3))
helloworld(c(0,0,0))
helloworld(list(0,0,0))
helloworld(c(0,0,0))
helloworld(function(x){print(x)})
helloworld(integer(0))
helloworld(array(0))
mychar <- char2helloworld(c("this","is","my","character","vector"))
helloworld(mychar)
mychar
print(mychar)
show(mychar)

joey711/testpkg documentation built on May 19, 2019, 3:01 p.m.