Introduction to Spliterator in Java

2021 VietMX 0

1. Overview The Spliterator interface, introduced in Java 8, can be used for traversing and partitioning sequences. It’s a base utility for Streams, especially parallel ones. In this article, […]

Introduction to PCollections

2021 VietMX 0

1. Overview In this article, we will be looking at PCollections, a Java library providing persistent, immutable collections. Persistent data structures (collections) can’t be modified directly during the […]

Introduction to the Java ArrayDeque

2021 VietMX 1

1. Overview In this tutorial, we’ll show how to use the Java’s ArrayDeque class – which is an implementation of Deque interface. An ArrayDeque (also known as an “Array Double Ended […]