MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / combination

Method combination

source/core/StarSet.hpp:278–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276
277template <typename Value, typename Compare, typename Allocator>
278Set<Value, Compare, Allocator> Set<Value, Compare, Allocator>::combination(Set const& s) const {
279 Set ret(*this);
280 ret.addAll(s);
281 return ret;
282}
283
284template <typename BaseMap>
285template <typename Container>

Callers 1

TESTFunction · 0.80

Calls 1

addAllMethod · 0.45

Tested by 1

TESTFunction · 0.64