htmldoug / util-backports

A backport library of scala.util in Standard Library from Scala 2.13 to 2.12

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

util backports from scala 2.13 to 2.12 Build Status

This is a backport library of Scala Standard Library scala.util package from 2.13 to 2.12.

2.13 scala.util package contains following new features.

  • tap
  • pipe
  • Using (loan pattern)

Installation

util-backports is available from maven central.

If you use SBT you can include util-backports in your project with

libraryDependencies += "com.github.bigwheel" %% "util-backports" % "2.0"

Usage

import scala.util.chaining._

val str = "42"
str.tap(println)
println(1 + str.pipe(_.length))


import scala.util.Using

Using.resource(new PrintWriter("write-target.txt")) { pw =>
  pw.write("hello world")
  // no need to close !
}

Hint for util-backports developers

How to check util package new feature in 2.13

git clone git@github.com:scala/scala.git
cd scala
git diff --stat=300,300 --stat-graph-width=20 origin/2.12.x..origin/2.13.x -- src/library/scala/util
git diff --stat=300,300 --stat-graph-width=20 origin/2.12.x..origin/2.13.x -- test/junit/scala/util

About

A backport library of scala.util in Standard Library from Scala 2.13 to 2.12

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Scala 100.0%