Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
2answers
3k views

Scala: Abstract Types vs Generics

I was reading this, http://www.scala-lang.org/node/105, and wondered when it was better to use Abstract Types e.g. abstract class Buffer { type T val element: T } rather that generics, e.g. ...
14
votes
3answers
186 views

Is there example of scala abstract type usage which is impossible to achieve with generics?

There are two possible way to express abstraction over types. abstract class Buffer { type T val element: T } rather that generics, e.g. abstract class Buffer[T] { val element: T } I ...
8
votes
2answers
827 views

Mixing type parameters and abstract types in scala

I am trying to use the answer of a preceding question to implement a small graph library. The idea is to consider graphs as colections, where vertices wrap collection elements. I would like to use ...
6
votes
1answer
229 views

Abstract types versus type parameters

In what situations should abstract types be preferred over type parameters?
5
votes
1answer
112 views

Why is overriding an already implemented abstract type not possible?

Given the following code: class A { class B type C <: B trait D } class E extends A { type C = B } class F extends E { override type C = B with D } Why does the Scala IDE's ...
3
votes
2answers
49 views

Missing class manifest for Array of abstract type member

I am looking for recommendations of providing a class manifest in an array instantiation. I have refactored this code (which compiles fine): trait Ref[ A ] trait Struct[ A ] { val arr = new Array[ ...
3
votes
3answers
112 views

Abstract types puzzler

Given class A is: class A { type R } Why does the following code compile (and run too)? val a = new A println(a) Isn't A supposed to be abstract?
2
votes
2answers
152 views

Scala related trait, abstract types

I have 2 related traits. Dao will be used be a class and DaoHelper will be used by Dao's companion object. I would like trait Dao to be able use functions defined in DaoHelper, the only way I could ...
2
votes
1answer
220 views

Scala: ResultSet translation into a different kinds of multimaps

I am going to create wrapper over JDBC ResultSet in Scala. This wrapper is intended to be a function ResultSet => ParticularType. The problem is I can't find a common solution for making MultiMaps. ...
2
votes
5answers
249 views

Constructing subclasses from base abstract class

I want to define a constructor in an abstract class that will create concrete subclasses. abstract class A { type Impl <: A def construct() : Impl = { val res = new Impl() //compile error: ...
2
votes
2answers
483 views

How to use Scala's this typing, abstract types, etc. to implement a Self type?

I couldn't find the answer to this in any other question. Suppose that I have an abstract superclass Abstract0 with two subclasses, Concrete1 and Concrete1. I want to be able to define in Abstract0 ...
1
vote
2answers
71 views

Is there a manifest for abstract types like there is for parameterized types?

I wonder if you could write something like the following in Scala: abstract class Foo trait Bar { type Foo_Tpe <: Foo : Manifest[Foo_Tpe] def fooClass = classOf[Foo_Tpe] }
1
vote
2answers
234 views

Path-dependent types vs. “underlying types”, which ones are checked?

When using path-dependent types with reflection I am getting a type mismatch error even though I have matching "underlying types". What are these "non-underlying types" and why are they checked ...