android - SparseArray remove() and delete() what's the difference? -
what main difference between calling remove() or delete() on sparsearray, because both accept key's arguments. thanks.
there no difference. quoting the documentation remove():
alias delete(int).
in other words, same thing. in the current implementation, remove() calls delete().
Comments
Post a Comment