Game Maker Games, Articles, Tutorials & More

Game Maker Network


Howdy, Guest! Please sign in or register an account.

Print

ds_list_sum

By Daniel · December 26, 2008

Sums the entries in a list of reals

// ds_list_sum(id)
// Sums the entries in a list of reals

var L, size, result, i;

L = argument0;
size = ds_list_size(L);
result = 0;

for (i = 0; i < size; i += 1)
  result += ds_list_find_value(L, i);

return result;

Comments

There are no comments to display.

Post a Comment

You must be signed in to post comments.

Advertisement