MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / getvector

Method getvector

src/ap.h:381–387  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

379 };
380
381 raw_vector<T> getvector(int iStart, int iEnd)
382 {
383 if( iStart>iEnd || wrongIdx(iStart) || wrongIdx(iEnd) )
384 return raw_vector<T>(0, 0, 1);
385 else
386 return raw_vector<T>(m_Vec+iStart-m_iLow, iEnd-iStart+1, 1);
387 };
388
389
390 const_raw_vector<T> getvector(int iStart, int iEnd) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected