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

Method ToStrings

source/script_object.cpp:382–391  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380//
381
382ResultType Array::ToStrings(LPTSTR *aStrings, int &aStringCount, int aStringsMax)
383{
384 for (index_t i = 0; i < mLength; ++i)
385 if (SYM_STRING == mItem[i].symbol)
386 aStrings[i] = mItem[i].string;
387 else
388 return FAIL;
389 aStringCount = mLength;
390 return OK;
391}
392
393
394//

Callers 1

BIF_DECLFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected