Skip to content

Instantly share code, notes, and snippets.

@rohmanhakim
Created April 4, 2019 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohmanhakim/2e15689ee35ad1f006d5b4bf5f0cddae to your computer and use it in GitHub Desktop.
Save rohmanhakim/2e15689ee35ad1f006d5b4bf5f0cddae to your computer and use it in GitHub Desktop.
package java.util;
public interface List<E> extends Collection<E> {
boolean add(E e);
boolean remove(Object o);
E get(int index);
...
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment