We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Does Processing has its on Queues implemented?
yeah but i mean, i dont see any queue here: https://processing.org/reference/
AFAIK Processing does not provide its own implementations for FIFO and LIFO data structures.
So no, it doesn't have its own queues. All the normal Java data structures are stil available, though -- you just need to include an import from java.util
import java.util.Queue; import java.util.ArrayDeque;
etc. then use as per examples in a forum search, check the reference in the Java API.
For reference:
https://forum.processing.org/two/discussion/23895/muffet-from-undertale
Answers
yeah but i mean, i dont see any queue here: https://processing.org/reference/
AFAIK Processing does not provide its own implementations for FIFO and LIFO data structures.
So no, it doesn't have its own queues. All the normal Java data structures are stil available, though -- you just need to include an import from java.util
etc. then use as per examples in a forum search, check the reference in the Java API.
For reference:
https://forum.processing.org/two/discussion/23895/muffet-from-undertale