|
Scala example source code file (AssociativeTest.scala)
The AssociativeTest.scala Scala example source codepackage scalaz import std.tuple._ import syntax.associative._ object AssociativeTest extends SpecLite { def compilationTest: Unit = { val a1 = (1, (2, 3)) val b1 = a1.reassociateLeft b1: ((Int, Int), Int) val a2: (Int \/ Int) \/ Int = \/-(42) val b2 = a2.reassociateRight b2: (Int \/ (Int \/ Int)) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala AssociativeTest.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.