1
vote
2answers
98 views

How can I write a typeclass in scala on a container type, returning an element from the container?

In the following program, I'm trying to get a typeclass to work. The typeclass is Algo, and the actual implementation for it takes a Container[_ <: Id] and is supposed to return an element from ...
2
votes
2answers
84 views

Implicit search decision between multiple alternatives

Is there any way of having multiple suitable alternatives in a type-class where the most specific is chosen, not producing diverging implicit expansion? It would look like this trait A trait B ...
3
votes
3answers
168 views

Typeclass and the scala Collection Interface

I am trying to implement a function that would work on types that have a map and a flatMap method. I have already made it for Traversable, but this does not include Future and Option directly. So I ...
8
votes
1answer
156 views

Using context bounds “negatively” to ensure type class instance is absent from scope

tl;dr: How do I do something like the made up code below: def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor" The 'Not[Functor]', being the made up part here. I want it to ...
7
votes
1answer
167 views

What is the motivation for type-classes in Scala?

I am having some trouble motivating the use of type classes in Scala when comparing to upper bounds on types. Consider the following code: case class NumList[T <: Complex](xs: Complex*) { ...
1
vote
0answers
60 views

Common supertype bound fails with type class resolution

When I have a generic class like this case class C [E] (errors : Seq[E]){ def merge [E1 <: EX, EX >: E] (errors1 : Seq[E1]) = Seq[EX]() ++ errors ++ errors1 } everything works - it merges ...
1
vote
1answer
108 views

Scala - Cake Pattern + Typeclasses + Implementations needing constructor parameter

Here is a bit of code I've distilled down as much as I can: trait CakeLayer[A] extends { // typeclass hack to make it play nice with traits implicit def requireTypeclass: MyTypeclass[A] val ...
2
votes
1answer
46 views

How to make this trait covariant

I want to make the following trait covariant, knowing that DistTraversableLike is covariant in both its type parameters: trait TraversableNumOps[T, Repr] extends DistTraversableLike[T, Repr] { ...
1
vote
1answer
68 views

Type Class and Subclassing

Suppose I have a type class: trait ToString[T] { def toString(t: T): String } And the following pimp: implicit def ToStr[T: ToString](t: T) = new { def toStr: String = implicitly[ToString[T]] ...
1
vote
1answer
52 views

Typeclass subclassing

I want to limit a parameter of union type of A and B types, where B is some general type, that will be subtyped. I want to put the objects in this method: def accept[A](a:A)(implicit ...
7
votes
2answers
298 views

Higher-kinded types—why possible Scala but not F#? [closed]

Given that the CLR generics implementation supports more features than the JVM's, such as reification, and the JVM's generics are a mere Java "compiler trick", why are higher-kinded types not possible ...
3
votes
2answers
237 views

How to write a scalaz.IsEmpty parameter for generic types

I am trying to write a generic method that wraps anything that has an scalaz.IsEmpty typeclass instance into an Option. It should return None for empty values, and wrap it into Some if it is ...
4
votes
1answer
204 views

Creating a more specific implicit using a structural type with Scala

As far as I know there is no shared trait in the collections library that defines the map method (most likely because there are different signatures for map). I have an observable value (think of a ...
2
votes
1answer
61 views

How to share a validation.Constraint across multiple Forms?

I'm using Constraints on my web forms and I've noticed that several forms have similar validations, for instance I have several types of form with a start date and an end date. In each case, I want to ...
1
vote
2answers
274 views

Scala implicit type class dependency injection

I'd like some help sorting out this scenario. I have an Akka actor where I want to inject a dependency, in this case RemoteFetcher, which I would also like mock in my tests. Like so: ...
13
votes
2answers
309 views

Scala - Typeclass example. How to explain the benefits?

So I was showing a coworker/friend an example of the typeclass pattern in Scala. It looks like this: case class Song(name: String, artist: String) case class Address(street: String, number: Int) ...
4
votes
2answers
127 views

type parameter inference + higher order types + type classes = :-(

import scalaz._; import Scalaz._ def foo[M[_]:MonadPlus,A](a:A) = a.point[M] // foo: [M[_], A](a: A)(implicit evidence$1: scalaz.MonadPlus[M])M[A] def bar1[M[_]:MonadPlus](i:Int): M[Int] = ...
13
votes
1answer
555 views

What is “polymorphism a la carte” and how can I benefit from it?

In his talk Simple Made Easy, Rick Hickey talks about "Polymorphism a la carte" (about 30:00 into the video). In the same context, he also mentions Haskell's Type Classes and Clojure's Multi-Methods ...
4
votes
1answer
262 views

Scala type class pattern and generic methods

I'm trying to write a generic extractor for parsing json POST body using spray and spray-json. However I'm struggling to get it working with more than one model. Here's the case statement in the ...
9
votes
1answer
176 views

Scala - Co/Contra-Variance as applied to implicit parameter selection

I've got a trait like this: trait CanFold[-T, R] { def sum(acc: R, elem: T): R def zero: R } With a function that works with it like this: def sum[A, B](list: Traversable[A])(implicit adder: ...
3
votes
1answer
152 views

Problems with contravariance in Scala

I want to define a type-class like this: trait CanFold[-T, R] { def sum(acc: R, elem: T): R def zero: R } implicit object CanFoldInts extends CanFold[Int, Int] { def sum(x: Int, y: Int) = x + ...
1
vote
2answers
83 views

Abstract Over TypeClass

Starting with some simple code: trait Moveable[A] { def move(a: A): A } trait Animal { def kick[A <: Animal: Moveable](a: A): A = implicitly[Moveable[A]] move a } object Cat { implicit ...
12
votes
1answer
280 views

Round-up of Scalaz type class instances for other libraries

I often find myself wanting (and then usually writing) Scalaz type class instances for classes in other Scala or Java libraries. To give just a few examples: A monoid instance for Shapeless's HList ...
0
votes
1answer
98 views

Scala: hierarchy of typeclasses and implicit resolution

Suppose I'm trying to represent, say, the domain of boolean logic (ignoring reduction for now). So I'll have in my store instances of Bools, or Ands and Ors or Nots etc. However, whilst I'll have ...
13
votes
2answers
289 views

Scala: checking if an object is Numeric

Is it possible for a pattern match to detect if something is a Numeric? I want to do the following: class DoubleWrapper(value: Double) { override def equals(o: Any): Boolean = o match { case ...
11
votes
2answers
1k views

Using Eithers with Scala “for” syntax

As I understand it, Scala "for" syntax is extremely similar to Haskell's monadic "do" syntax. In Scala, "for" syntax is often used for Lists and Options. I'd like to use it with Eithers, but the ...
2
votes
1answer
97 views

How do I have the scala compiler infer one type from another?

I want to create a Scala Id typeclass, so that, for example, I can declare that an Id for type Foo takes a Long value, e.g. val fooId: Id[Foo] = Id(12L) // type-safe at compile time val fooIdValue: ...
7
votes
1answer
616 views

Dependent method types and type-classes

I've got a bunch of data store type-classes that look all the same. trait FooStore[C] { def create(f: FooId => Foo)(c: C): Foo // update and find methods } I'd like to simplify things and ...
1
vote
1answer
142 views

Typeclasses and subtyping

I have the following code defining a type class. trait Foo[T] { def toFoo(x: T): String } trait Foos { def toFoo[T](f: T => String): Foo[T] = new Foo[T] { def toFoo(x: T): String = f(x) ...
4
votes
3answers
371 views

Explain Traverse[List] implementation in scalaz-seven

I'm trying to understand the traverseImpl implementation in scalaz-seven: def traverseImpl[F[_], A, B](l: List[A])(f: A => F[B])(implicit F: Applicative[F]) = { ...
5
votes
3answers
181 views

Can Scala constrain an object graph so that only those objects relevant to the context are visible?

Is there a way to use Scala's type-system to concisely specify the context-relevant subgraph of a complete object graph? DCI argues that you often have a fairly complex object graph but in any one ...
24
votes
1answer
847 views

Is it possible to implement liftM2 in Scala?

In Haskell, liftM2 can be defined as: liftM2 :: (Monad m) => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r liftM2 f m1 m2 = do x1 <- m1 x2 <- m2 return $ f x1 x2 I'd like to ...
4
votes
1answer
205 views

How to write first class functions with context bounds, that can be called cleanly at use site?

For example, let us say I want to write a function length that returns length of the given structure, given that it has an instance of type class Length (from Scalaz) in scope. This is how I ...
8
votes
2answers
302 views

Writing type class instances for nested classes in Scala

In this recent Stack Overflow question, the author wanted to change a list of parsers of some type into a parser that returns lists of that type. We can imagine doing this with Scalaz's sequence for ...
26
votes
2answers
833 views

Why is a “type class” called “type class”?

When diving deeper into Scala I hit the term type class. It had been confusing because a class is a type and a type could be a class in Scala and "type" and "class" are in itself abstract terms. ...
7
votes
1answer
347 views

Best way to use type classes with list parametrized with some base class, abstract class or trait

I think it would be easier to describe a problem with concrete example. Suppose I have have Fruit class hierarchy and Show type class: trait Fruit case class Apple extends Fruit case class Orange ...
5
votes
1answer
172 views

How does Scalaz `F[_] : Applicative` type constraint imply use of implicit parameters?

I am struggling to understand the following function definition in Traverse trait in Scalaz: def traverse[F[_] : Applicative, A, B](f: A => F[B], t: T[A]): F[T[B]] The part I don't understand is ...
11
votes
1answer
475 views

Naming convention for typeclasses in Scala

In Java world, the naming conventions for interfaces are pretty much well established. For instance, when you say certain class implements the interface Comparable, you can say that it's objects are ...
9
votes
1answer
548 views

How can I combine the typeclass pattern with subtyping?

Suppose I'm using the typeclass pattern in Scala. Here's how I make a class C part of the typeclass Foo: Welcome to Scala version 2.9.0.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_26). ...
5
votes
4answers
255 views

Question about type classes in Scala

Let there are classes Fruit, Orange, and Apple. abstract class Fruit class Orange extends Fruit class Apple extends Fruit Now I want to add write functionality to both types Orange and Apple. Using ...
4
votes
1answer
257 views

Why does type inference chooses only most specific type of the target reference when looking at implicit conversions?

Consider the following simple code to create a typesafe equals. This first section allows me to create an Identity typeclass for any type. scala> trait Equals[A] { def equal(a1 : A, a2 : A) : ...
4
votes
2answers
257 views

A Question on Type Classes

I need to define a type class Field as follows: trait Field[A] { // Additive identity def zero: A // Multiplicative identity def one: A } The Numeric type class also provides the ...
10
votes
3answers
237 views

Why does Numeric behave differently than Ordered?

Scala has a number of traits that you can use as type classes, for example Ordered and Numeric in the package scala.math. I can, for example, write a generic method using Ordered like this: def f[T ...
1
vote
2answers
94 views

Looking for example of type class usage that will work in Scala 2.7.7 and 2.8 scripts

Hi I'm looking for a quick example of type class usage in Scala that will work in both 2.7.7 and 2.8 environments. All of the examples that I've seen only work in 2.8, but I've been told that type ...
13
votes
3answers
1k views

How do I get an instance of the type class associated with a context bound?

Note: I'm posing this question to answer it myself, but other answers are welcome. Consider the following simple method: def add[T](x: T, y: T)(implicit num: Numeric[T]) = num.plus(x,y) I can ...
7
votes
2answers
265 views

Adding a validity check dependent on a typeclass (Optional implicits)

In scala, we can use implicit typeclasses to conditionally add methods onto a parameterized type dependent on that type's parameters. For example, Iterator.sum: def sum[B >: A](implicit num: ...
7
votes
3answers
734 views

Type class pattern in Scala doesn't consider inheritance?

I am designing an API using type classes in some cases however I have encountered a problem with implicit resolution. As shown below, if there is an implicit object for type A but an object of type B ...
3
votes
3answers
707 views

Scala: Generic implicit converters?

I would like to define a generic implicit converter that works for all subtypes of type T. For example: abstract class Price[A] { def price(a: Any): Int } trait Car case class Prius(year: Int) ...
1
vote
1answer
186 views

Scala: Do implicit conversions work on Any?

I would like to store some objects from different type hierarchy into List[Any] or similar container, but perform implicit conversions on them later on to do something like type class. Here is an ...
10
votes
1answer
740 views

Type classes in Scala

Having a background in Haskell I am currently trying to get familiar with Scala. I encountered some problems trying to translate a small, extensible expression language from Haskell into Scala. The ...

1 2