MCPcopy Create free account
hub / github.com/OpenGene/fastp / list2string

Method list2string

src/stats.cpp:465–473  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

463}
464
465string Stats::list2string(double* list, int size) {
466 stringstream ss;
467 for(int i=0; i<size; i++) {
468 ss << list[i];
469 if(i < size-1)
470 ss << ",";
471 }
472 return ss.str();
473}
474
475string Stats::list2string(double* list, int size, long* coords) {
476 stringstream ss;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected