Learn R Programming

bit64 (version 4.6.0-1)

c.integer64: Concatenating integer64 vectors

Description

The ususal functions 'c', 'cbind' and 'rbind'

Usage

# S3 method for integer64
c(..., recursive = FALSE)

# S3 method for integer64 cbind(...)

# S3 method for integer64 rbind(...)

Value

c() returns a integer64 vector of the total length of the input

cbind() and rbind() return a integer64 matrix

Arguments

...

two or more arguments coerced to 'integer64' and passed to NextMethod()

recursive

logical. If recursive = TRUE, the function recursively descends through lists (and pairlists) combining all their elements into a vector.

See Also

rep.integer64() seq.integer64() as.data.frame.integer64() integer64()

Examples

Run this code
  c(as.integer64(1), 2:6)
  cbind(1:6, as.integer(1:6))
  rbind(1:6, as.integer(1:6))

Run the code above in your browser using DataLab