Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Split code to several files.
Browse files Browse the repository at this point in the history
Introduce strawman.collection.mutable and strawman.collection.immutable packages.
Seq is still in strawman.collection package because it is implemented by both mutable (e.g. ArrayBuffer) and immutable (e.g. List) concrete collections.
  • Loading branch information
julienrf committed Dec 20, 2016
1 parent e857b3f commit 8f5f03c
Show file tree
Hide file tree
Showing 15 changed files with 865 additions and 810 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version := "0.1-SNAPSHOT"

scalaVersion := "2.12.1"

scalacOptions ++= Seq("-deprecation", "-unchecked")
scalacOptions ++= Seq("-deprecation", "-unchecked", "-Yno-imports", "-language:higherKinds")

testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s", "-a")

Expand Down
Loading

0 comments on commit 8f5f03c

Please sign in to comment.