tabr-rep {tabr} | R Documentation |
Repeat for tabr classes
Description
Several methods are implemented for the classes noteworthy
, noteinfo
, and
music
. See tabr-methods()
for more details on methods for tabr classes.
Usage
## S3 method for class 'noteworthy'
rep(x, ...)
## S3 method for class 'noteinfo'
rep(x, ...)
## S3 method for class 'music'
rep(x, ...)
## S3 method for class 'lyrics'
rep(x, ...)
## S3 method for class 'phrase'
rep(x, ...)
Arguments
x |
object. |
... |
additional arguments. Not accepted for phrase objects. |
See Also
tabr-methods()
, note-metadata()
Examples
# noteworthy class examples
x <- "a b c"
rep(x, 2)
rep(as_noteworthy(x), 2)
# noteinfo class examples
x <- "4x 4-.*2 2"
rep(as_noteinfo(x), times = c(2, 1, 1, 2))
# music class examples
x <- "c,~4 c,1 c'e_'g'4-."
rep(as_music(x), each = 2)
# phrase class examples
rep(phrase(x), 2)
[Package tabr version 0.5.0 Index]