Skip to content

Instantly share code, notes, and snippets.

@wrobstory
Last active August 29, 2015 14:16
Show Gist options
  • Save wrobstory/4f1e7896f2ed1c36d260 to your computer and use it in GitHub Desktop.
Save wrobstory/4f1e7896f2ed1c36d260 to your computer and use it in GitHub Desktop.
Scala +: :+
scala> val fooList: List[String] = List()
fooList: List[String] = List()
scala> foo :+ "one"
res117: List[String] = List(one)
scala> foo +: "one"
res118: scala.collection.immutable.IndexedSeq[Any] = Vector(List(), o, n, e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment