MCPcopy Create free account
hub / github.com/audacity/audacity / AppendOne

Method AppendOne

libraries/lib-track/Track.cpp:889–898  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

887}
888
889void TrackList::AppendOne(TrackList &&list)
890{
891 const auto iter = list.ListOfTracks::begin(),
892 end = list.ListOfTracks::end();
893 if (iter != end) {
894 auto pTrack = *iter;
895 list.erase(iter);
896 this->Add(pTrack);
897 }
898}
899
900Track::Holder TrackList::DetachFirst()
901{

Callers 1

CommitMethod · 0.80

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected