- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for addFirst (0.08 seconds)
-
android/guava/src/com/google/common/collect/Synchronized.java
} @Override Deque<E> delegate() { return (Deque<E>) super.delegate(); } @Override public void addFirst(E e) { synchronized (mutex) { delegate().addFirst(e); } } @Override public void addLast(E e) { synchronized (mutex) { delegate().addLast(e); } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 53K bytes - Click Count (0) -
guava/src/com/google/common/collect/Synchronized.java
} @Override Deque<E> delegate() { return (Deque<E>) super.delegate(); } @Override public void addFirst(E e) { synchronized (mutex) { delegate().addFirst(e); } } @Override public void addLast(E e) { synchronized (mutex) { delegate().addLast(e); } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 56.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @param collection the sequenced collection * @param element the element to add * @since Java 21 */ public static <E> void addFirst(final SequencedCollection<E> collection, final E element) { collection.addFirst(element); } /** * Adds an element to the end of a sequenced collection. * * @param <E> the element typeCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 49.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterators.java
this.metaIterators = new ArrayDeque<>(); } this.metaIterators.addFirst(this.topMetaIterator); if (topConcat.metaIterators != null) { while (!topConcat.metaIterators.isEmpty()) { this.metaIterators.addFirst(topConcat.metaIterators.removeLast()); } } this.topMetaIterator = topConcat.topMetaIterator;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/Iterators.java
this.metaIterators = new ArrayDeque<>(); } this.metaIterators.addFirst(this.topMetaIterator); if (topConcat.metaIterators != null) { while (!topConcat.metaIterators.isEmpty()) { this.metaIterators.addFirst(topConcat.metaIterators.removeLast()); } } this.topMetaIterator = topConcat.topMetaIterator;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0)