Concatenate address objects
Usage
# S3 method for class 'address'
c(...)
Arguments
- ...
Address objects to be concatenated.
Examples
gerry <- as.address("Gerald <gerry@gmail.com>")
alice <- address("alice@yahoo.com")
jim <- address("jim@aol.com", "Jim")
c(gerry, alice)
#> [1] "Gerald <gerry@gmail.com>" "alice@yahoo.com"
c(gerry, c(alice, jim))
#> [1] "Gerald <gerry@gmail.com>" "alice@yahoo.com"
#> [3] "Jim <jim@aol.com>"