Backend implementation using in-memory list storage.
This wraps the existing list-based storage mechanism for backwards compatibility.
Methods
Initialize a ListBackend
Arguments
matrices
A list of dppMatrix objects
Method get_matrix()
Get a specific matrix by index
Usage
ListBackend$get_matrix(i)
Returns
A dppMatrix object
Method get_all_matrices()
Get all matrices
Usage
ListBackend$get_all_matrices()
Returns
A list of dppMatrix objects
Get the number of matrices
Method get_dimensions()
Get matrix dimensions
Usage
ListBackend$get_dimensions()
Returns
Integer p (matrices are p x p)
Method clone()
The objects of this class are cloneable with this method.
Usage
ListBackend$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.