MCPcopy Create free account
hub / github.com/VcDevel/std-simd / Array

Method Array

tests/mathreference.h:52–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 std::size_t size_;
51 const T *data_;
52 Array() : size_(0), data_(nullptr) {}
53 Array(size_t s, const T *p) : size_(s), data_(p) {}
54 const T *begin() const { return data_; }
55 const T *end() const { return data_ + size_; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected