friendlyhj/ZenUtils

[Feature Request] Add StringList.size

Closed this issue · 0 comments

Right now the only solution to know size of list is this .zs function:

function pendingCount() as int {
  var k = 0;
  for s in playerPending {
    k += 1;
  }
  return k;
}

Please add getter for length of list.