Heiko Seeberger

Results 41 issues of Heiko Seeberger

"method newTermName in trait Names is deprecated: Use TermName instead"

enhancement

``` scala scala> val address = Address("akka", "some-system") address: akka.actor.Address = akka://some-system scala> import scala.pickling.Defaults._ import scala.pickling.Defaults._ scala> import scala.pickling.binary._ import scala.pickling.binary._ scala> val bytes = address.pickle.value bytes: Array[Byte] =...

bug
unpickle-asymmetry

``` scala implicit val catPrintable: Printable[Cat] = (cat: Cat) => { import PrintableInstances._ import PrintableSyntax._ val name = cat.name.format // compiler error on String val age = cat.age.format // works...

As an example take the signature of [`Stream.accum`](https://github.com/SodiumFRP/sodium/blob/master/scala/src/main/scala/sodium/Stream.scala#L243): ``` scala final def accum[S](initState: S, f: (A, S) => S): Cell[S] ``` If this is changed to ``` scala final def...

enhancement
scala

One possible solution could be to make the `UserProjection` a persistent actor and change the stream processing such that after the view data has been replicated in a reliable way...

As discussed on the mailing list, please "carefully inspect" the created manifest.

See http://scala-programming-language.1934581.n4.nabble.com/Why-Seq-is-not-scala-collection-immutable-Seq-td2552735.html At least all usage of Seq has to be investigated.

Bug

override def bndBundleVendor = Some("WeigleWilczek") override def bndBundleLicense = Some("Eclipse Public License v1.0 (http://www.eclipse.org/legal/epl-v10.html)") override def bndExecutionEnvironment = Set(Java5, Java6)

Feature