Frequently Asked Questions

Christian Düben

October 29, 2024

1 What does “by reference” mean?

It means that the method directly modifies the input object. You call these functions without having to assign the return value. Many of them return NULL. To, e.g., merge elements from container y into container x, you call merge(x, y), not x <- merge(x, y). Function descriptions document which methods update their input by reference (merge’s description: “Merge two objects by reference”).

2 Do I have to learn C++ to use this package?

No, the package documentation contains the necessary information and explains it in a language targeting R users. However, for a deeper understanding of the container types and their optimal use cases, it helps to know C++.

3 Why are many methods not available for all container types?

That has to do with the nature of the containers. This package follows the C++ Standard Template Library in that regard.

4 Do I need to read the package documentation, if I know how the method works in C++?

Yes. This package tweaks methods to make them more intuitive for R users. It, e.g., utilizes 1-based, not 0-based, indexing. And functions like count and contains accept a vector as an input in cppcontainers, whereas the C++ counterpart restricts it to single values. Always read the package documentation.

5 Why does cppcontainers not cover all Standard Template Library container methods?

The first reason is that not all functions are meaningful to use from R. One example is the equal_range method returning iterators. A second explanation lies in the C++ standard. cppcontainers uses C++20. It, therefore, excludes methods introduced to the Standard Template Library in later standards.

6 Why does cppcontainers use C++20?

Newer standards support more features. At the time of writing, C++20 is the newest C++ standard that quasi all R users can compile. C++23 is still too new to have almost universal coverage across machines, and it primarily introduces methods that are not well suited for use from R.

7 Why does my R session crash?

If your session crashes, you may have triggered a segmentation fault by trying to access data out of bounds. It, e.g., occurs when you have a CppVector of length 10 and you try to access the non-existent 11th element through x[11]. This is the intended behavior. For computational efficiency, cppcontainers just adds a thin wrapper without further checks around many C++ methods. Use at to access elements with bounds checks.

8 Are cppcontainers objects thread-safe?

This package does not guarantee thread-safety. Do not modify cppcontainers objects across parallel processes, unless you exactly know how the interface between R and C++ and the respective C++ data structures work.

9 Can I nest container types?

No, cppcontainers objects only store primitive values. Use Rcpp to compile nested container arrangements. Implementing all potential container combinations in cppcontainers would increase the size of the package exponentially.