containsMany method

bool containsMany(
  1. List<int> ids
)

Returns true if this box contains objects with all of the given ids.

Implementation

bool containsMany(List<int> ids) {
  final contains = malloc<Bool>();
  try {
    return executeWithIdArray(ids, (ptr) {
      checkObx(C.box_contains_many(_ptr, ptr, contains));
      return contains.value;
    });
  } finally {
    malloc.free(contains);
  }
}