combine {matter}R Documentation

Combine Out-of-Memory Objects

Description

This is a generic function for combining matter objects. A default fallback method to c() is provided as well.

This generic is internally used to implement c(), cbind(), and rbind() for matter objects.

Usage

combine(x, y, ...)

Arguments

x

One of the objects.

y

A second object.

...

Any other objects of the same class as x and y.

Author(s)

Kylie A. Bemis

Examples

x <- 1:5
y <- 6:10

combine(x, y)

[Package matter version 1.19.1 Index]