MCPcopy Create free account
hub / github.com/IntegralPilot/wasm_os / vector

Method vector

stdlib/cpp/vector.hpp:31–31  ·  view source on GitHub ↗

Constructors

Source from the content-addressed store, hash-verified

29public:
30 // Constructors
31 vector() noexcept : data_(nullptr), size_(0), capacity_(0) {}
32
33 explicit vector(size_type count, const T& value = T())
34 : data_(allocate(count)), size_(count), capacity_(count)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected