I have this code for a class that represent a element in a list
public class Element<T>{
Element<T> next;
Element<T> previous;
T info;
}
I have some ideas but I actually don't figure out the full meaning of the above declaration. And have some hard times to search for an explanation of this technique.