MCPcopy Create free account
hub / github.com/DFHack/dfhack / MakeNumSequence

Function MakeNumSequence

plugins/cxxrandom.cpp:198–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196
197
198uint64_t MakeNumSequence( int64_t start, int64_t end ) {
199 if (start == end) {
200 return SequenceKeeper::Instance().MakeNumSequence();
201 }
202 return SequenceKeeper::Instance().MakeNumSequence(start, end);
203}
204
205void DestroyNumSequence( uint64_t seqID ) {
206 SequenceKeeper::Instance().DestroySequence(seqID);

Callers

nothing calls this directly

Calls 1

MakeNumSequenceMethod · 0.80

Tested by

no test coverage detected