03.05.2018, 12:15
(
Последний раз редактировалось ball; 03.05.2018 в 13:46.
)
What is the difference between LIST_push_back_* and LIST_push_front_*? I read documentation of this, but still I don't get it, for example
What is the difference?
@down: Oh, thanks. I thought that there are indexes to store data like normal arrays.
Код:
new List:list; LIST_push_back_str(list, "This is a test");
Код:
new List:list; LIST_push_front_str(list, "This is a test");
@down: Oh, thanks. I thought that there are indexes to store data like normal arrays.