MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / seq

Method seq

src/api/cpp/seq.cpp:43–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41seq::~seq() = default;
42
43seq::seq(double length) : s{}, size{}, m_gfor(false) {
44 if (length < 0) {
45 init(0, length, 1);
46 } else {
47 init(0, length - 1, 1);
48 }
49}
50
51seq::seq(const af_seq& s_) : s{}, size{}, m_gfor(false) {
52 init(s_.begin, s_.end, s_.step);

Callers

nothing calls this directly

Calls 2

signbitFunction · 0.70
initFunction · 0.50

Tested by

no test coverage detected