Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vavr-io/vavr
vʌvr (formerly called Javaslang) is a non-commercial, non-profit object-functional library that runs with Java 8+. It aims to reduce the lines of code and increase code quality.
https://github.com/vavr-io/vavr
functional-programming immutable-collections java java8 javaslang object-functional persistent-collections vavr
Last synced: 1 day ago
JSON representation
vʌvr (formerly called Javaslang) is a non-commercial, non-profit object-functional library that runs with Java 8+. It aims to reduce the lines of code and increase code quality.
- Host: GitHub
- URL: https://github.com/vavr-io/vavr
- Owner: vavr-io
- License: other
- Created: 2014-01-30T14:07:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T14:31:57.000Z (9 months ago)
- Last Synced: 2024-05-21T01:09:49.237Z (8 months ago)
- Topics: functional-programming, immutable-collections, java, java8, javaslang, object-functional, persistent-collections, vavr
- Language: Java
- Homepage: https://vavr.io
- Size: 20 MB
- Stars: 5,542
- Watchers: 181
- Forks: 612
- Open Issues: 95
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Vavr
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![GitHub Release](https://img.shields.io/github/release/vavr-io/vavr.svg?style=flat-square)](https://github.com/vavr-io/vavr/releases)
![Maven Central Version](https://img.shields.io/maven-central/v/io.vavr/vavr?versionPrefix=0)
[![Build Status](https://github.com/vavr-io/vavr/actions/workflows/build.yml/badge.svg)](https://github.com/vavr-io/vavr/actions/workflows/build.yml)
[![Code Coverage](https://codecov.io/gh/vavr-io/vavr/branch/master/graph/badge.svg)](https://codecov.io/gh/vavr-io/vavr)```text
____ ______________ ________________________ __________
\ \/ / \ \/ / __/ / \ \/ / \
\______/___/\___\______/___/_____/___/\___\______/___/\___\
```Vavr is an object-functional language extension to Java 8 that aims to reduce the number of lines of code and increase code quality.
It provides persistent collections, functional abstractions for error handling, concurrent programming, pattern matching, and much more.Vavr fuses the power of object-oriented programming with the elegance and robustness of functional programming.
The most interesting part is a feature-rich, persistent collection library that smoothly integrates with Java's standard collections.Because Vavr does not depend on any libraries (other than the JVM), you can easily add it as a standalone _.jar_ to your classpath.
### Stargazers over time
[![Stargazers over time](https://starchart.cc/vavr-io/vavr.svg?variant=adaptive)](https://starchart.cc/vavr-io/vavr)## Using Vavr
See [User Guide](http://docs.vavr.io) and/or [Javadoc](http://www.javadoc.io/doc/io.vavr/vavr).
### Gradle tasks:
* Build: `./gradlew check`
* test reports: `./build/reports/tests/test/index.html`
* coverage reports: `./build/reports/jacoco/test/html/index.html`
* Javadoc (linting): `./gradlew javadoc`### Contributing
Currently, there are two significant branches:
- `master` (represents a stream of work leading to the release of a new major version)
- `version/0.x` (continues 0.10.5 with minor updates and bugfixes)If you're unsure which one to start with, start with `version/0.x`.
A small number of users have reported problems building Vavr. Read our [contribution guide](./CONTRIBUTING.md) for details.