You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stockIter_SafeRemove_InternalC(&count, array[], size, value, &last)
{
if (0<= value < size++&& array[value] > value)
{
// This version has reverse iterators, which need maintaining, and can// be used in place of a loop to jump backwards in the list.return--count,
last = (array[(value -1) % size] -1) % size,
array[last] = array[value],
array[value] = value,
array[(array[last] -1) % size] = (last +1) % size;
}
return INVALID_ITERATOR_SLOT;
}
(Don't know why it didn't make that link to the other repository in to a nice box).
The text was updated successfully, but these errors were encountered:
"(Don't know why it didn't make that link to the other repository in to a nice box).".
It did on chrome 61, win10.
Anyway, I did remember looking at the current YSI and attempting to use improvements just like that one, but I remember running in an issue that made me stop. I don't remember what it was though.
Do you see three chunks of code? I made two links - the first to this repository, which github turned in to a representation of code; the second to a different repository, which was left as a link. As a result, I manually copied the code, so two chunks are visible.
If you don't see it on the other fork:
karimcambridge/samp-foreach#10 (comment)
For reference, your
Iter_Remove
:foreach/foreach.inc
Lines 1543 to 1561 in 9cca892
My current one:
https://github.com/Misiur/YSI-Includes/blob/6e34cff72408958ca7f800d97eca529db2972713/YSI_Data/y_foreach/impl.inc#L426-L440
(Don't know why it didn't make that link to the other repository in to a nice box).
The text was updated successfully, but these errors were encountered: