|
Project Information
Members
Links
|
The source for Scalaz is now hosted on GitHub - http://github.com/scalaz/scalaz Scalaz is a library written in the Scala Programming Language. The intention of Scalaz is to include general functions that are not currently available in the core Scala API. The scalaz-core module depends only on the core Scala API and the core Java 2 Standard Edition API. Scalaz is released under a BSD open source licence making it compatible with the licence of the Scala project. Scalaz 6.0.4 was released in January 2012, targeting Scala 2.8.1, 2.9.0.1, 2.9.1 and 2.10.0-M1. Full download for 2.9.1 Scalaz 7 is currently being developed. This is a rewrite to address the challenges posed by type class inheritance. The first release of this series is expected in April 2012. Community
Presentations
Links
FeaturesScalaz and the Pimps
import scalaz._ import Scalaz._ // profit!
Type Classes
Data Structures
Concurrency
Integration
Obtaining ScalazReleases are also published to: http://scala-tools.org/repo-releases/org/scalaz. The scalaz-full module contains the full distribution (all modules, Scaladoc, and annotated sources) Snapshots are periodically published to Scala Tools SBT// Only needed to track snapshot releases, SBT automatically includes the releases repository. resolvers += "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/" libraryDependencies += "org.scalaz" %% "scalaz-core" % "6.0.4" Maven<repositories>
<repository>
<id>scala-tools-releases</id>
<name>Scala-Tools Maven2 Repository Releases</name>
<url>http://scala-tools.org/repo-releases</url>
</repository>
<repository>
<id>scala-tools-snapshots</id>
<name>Scala-Tools Maven2 Repository - Snapshots</name>
<url>http://scala-tools.org/repo-snapshots</url>
</repository>
</repositories>
<properties>
<scala.version>2.9.1</scala.version>
</properties>
<dependencies>
<dependency>
<groupId>org.scalaz</groupId>
<artifactId>scalaz-core_${scala.version}</artifactId>
<version>6.0.4</version>
</dependency>
</dependencies>Issueshttps://github.com/scalaz/scalaz/issues HackingSource: http://github.com/scalaz/scalaz Continuous Integration: http://hudson.scala-tools.org/view/scalaz/? ThanksThanks to the Scala core team for the improvements in Scala 2.8.0 which have made Scalaz leaner and meaner. We're looking forward to further improvements in type inference, implicit resolution, and higher kinded types in future releases!
YourKit is kindly supporting open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of innovative and intelligent tools for profiling Java and .NET applications. Take a look at YourKit's leading software products: |