Registry / utility / vavr
library1.0.1javamavenunverified

An object-functional language extension for Java 8+, providing persistent collections, functional control structures, and more.

<dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> <version>1.0.1</version> </dependency>
INSTALL
IMPORT
SIG · VAVR
V
vavr
utilityjavav1.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

List
io.vavr.collection.List

Creates a Vavr List, filters even numbers, and computes their sum.

import io.vavr.collection.List; public class Example { public static void main(String[] args) { List<Integer> numbers = List.of(1, 2, 3, 4, 5); int sum = numbers.filter(n -> n % 2 == 0).sum().intValue(); System.out.println("Sum of evens: " + sum); } }
Debug
Known issues
gotchaVavr 1.0.x requires Java 8+ but some features (like Pattern Matching) are experimental.
fix
Check the Vavr documentation for experimental API stability before using in production.
affects: >=1.0.0
Upgrade
Version history
1.0.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
vavr — mvn dependency:get vavr · libregistry