I’ve got this example of a class named ArrayQueue which is implemented using :
public class ArrayQueue<E> implements Queue<E>, Cloneable, Serializable {
.block
height: 610
scrolling: no
border: no
license: cc-by-4.0
ArrayQueue.pde
/**
* ArrayQueue (v1.1.1)
* GoToLoop (2020/Apr/20)
* https://Discourse.Processing.org/t/linkedlist-vs-arraylist/19946/14
*/
//package java.util; // Uncomment this line if this is a ".java" file
import java.util.Collection;
import java.util.Queue;
This file has been truncated. show original
Brownian_Motion.pde
/**
* Brownian Motion (v3.0.0)
* by Ammon.Owed (2013/Aug)
* mod GoToLoop
*
* Forum.Processing.org/two/discussion/2829/fifo-queue-problem-with-code#Item_1
*
* OpenProcessing.org/sketch/878458
* Bl.ocks.org/GoToLoop/145418d1dfb062c7c41a630bce5b8374
*/
This file has been truncated. show original
There are more than three files. show original
1 Like