Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
###########################################################################/**
|
|
2 |
# @RdocClass RspVoid
|
|
3 |
#
|
|
4 |
# @title "The RspVoid class"
|
|
5 |
#
|
|
6 |
# \description{
|
|
7 |
# @classhierarchy
|
|
8 |
#
|
|
9 |
# An RspVoid is an @see "RspConstruct" that contains nothing and
|
|
10 |
# outputs nothing.
|
|
11 |
# }
|
|
12 |
#
|
|
13 |
# @synopsis
|
|
14 |
#
|
|
15 |
# \arguments{
|
|
16 |
# \item{...}{Not used.}
|
|
17 |
# }
|
|
18 |
#
|
|
19 |
# \section{Fields and Methods}{
|
|
20 |
# @allmethods
|
|
21 |
# }
|
|
22 |
#
|
|
23 |
# @author
|
|
24 |
#
|
|
25 |
# @keyword internal
|
|
26 |
#*/###########################################################################
|
|
27 |
setConstructorS3("RspVoid", function(...) { |
|
28 | 1 |
extend(RspConstruct(), "RspVoid") |
29 |
})
|
|
30 |
|
|
31 |
setMethodS3("asRspString", "RspVoid", function(object, ...) { |
|
32 | 1 |
RspString()
|
33 |
})
|
Read our documentation on viewing source code .