MCPcopy Create free account
hub / github.com/PDAL/PDAL / sort

Method sort

pdal/PointView.cpp:99–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99void PointView::sort(Dimension::Id dim)
100{
101 auto comp = [this, dim](PointId id1, PointId id2)
102 {
103 return compare(dim, id1, id2);
104 };
105 basic_sort(std::sort<std::vector<PointId>::iterator, PointView::Compare>, comp);
106}
107
108void PointView::sort(Compare comp)
109{

Callers 5

writeCompressedMethod · 0.80
streamTestFunction · 0.80
TESTFunction · 0.80
processGroundMethod · 0.80
filterMethod · 0.80

Calls 1

compareFunction · 0.70

Tested by 2

streamTestFunction · 0.64
TESTFunction · 0.64