MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / Delete

Method Delete

source/script.h:2082–2091  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2080 }
2081
2082 void Delete(int mon_index)
2083 {
2084 if (index >= mon_index && index >= 0)
2085 {
2086 if (index == mon_index)
2087 deleted = true; // Callers who care about this will reset it after each iteration.
2088 index--; // So index+1 is the next item.
2089 }
2090 count--;
2091 }
2092
2093 void Dispose()
2094 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected