The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
56 views

Difference between abstract type in traits and type parameter [duplicate]

What is the difference in trait MyTrait[T] { def doSomething() : T } and trait MyTrait { type T def doSomething() : T } when you're implementing or mixing them in, it's looks almost ...
19
votes
4answers
346 views

Scala: implementing method with return type of concrete instance

I need a way to enforce a method in an abstract class to have a return type of the concrete class of the object it is called on. The most common example is a copy() method, and I'm currently using an ...
0
votes
1answer
67 views

scala and abstract type “unboxing”

Given classes object A { type URLT = String } case class A(url : URLT) class ForeignStreamWriter { def writeString(str: String) {} } trait WriterA { val writer : ForeignStreamWriter def ...
0
votes
1answer
58 views

Overriding abstract type does not work with control abstraction

This question follows the one in Cake pattern with overriding abstract type don't work with Upper Type Bounds. I want to override the abstract type in trait with <:. The previous links gives the ...
1
vote
1answer
96 views

Scala traits and name collision in abstract types

I'm trying define a trait C which extends some traits A,B,... All traits,C and A,B,... implement a common trait T. Trait C is supposed to implement T by calling the implementations of T in A,B,..: ...
0
votes
3answers
65 views

Getting AbstractType from request

The user sumbits a form that was build using the symfony 2 framework with abstract type: <?php $form = $this->createForm(new MyAbstractType(), new MyEntity()); I receive this post request in ...
2
votes
1answer
57 views

Self-type cannot access type member

Given a trait with type parameter, and one with abstract type member: trait Foo[ A ] { def schoko( f: A ) : Unit } trait Bar { type A def foo: Foo[ A ] } trait X trait ConcreteBar extends ...
0
votes
1answer
62 views

Scala loses track of related types when concatenating (projecting) type members

I am walking around a problem, and I found a new strange problem with type projections and abstract types. Say I have a system which spawns transactions, and there is a peer system to which I want to ...
4
votes
2answers
70 views

Cannot implement representation type as type member

While cracking my head over another question, I came across different riddles which seem related. This is one of them: trait Sys[ S <: Sys[ S ]] { type Peer <: Sys[ Peer ] } trait Fenced { ...
0
votes
0answers
74 views

Type mismatch with abstract types and projections (diverging?)

I am trying to extend an existing STM system I have, where a transaction (which might be durable) has an associated in-memory transaction: trait VarLike[ -Tx, A ] { def update( value: A )( ...
3
votes
2answers
113 views

Abstract types in method parameters

There's a simple example in Programming in Scala by Odersky et al on abstract types, but it does not seem to follow to it's logical conclusion [now edited to make this my exact code]: class Food ...
6
votes
4answers
130 views

scala class constructors and abstract types

I want to use an abstract type rather than a type parameter. In my generic classes constructor, I want to have a parameter of the generic type, but the code doesn't compile: class SomeOtherClass(val ...
0
votes
2answers
88 views

self annotation using abstract type

I would like to define an abstract recursive data structure with an abstract type. Something like this : case class ParentA( name : String, children : List[ParentA] ) extends Parent { type PARENT ...
4
votes
1answer
60 views

Use of abstract type in a concrete class?

scala> class A { type T <: String; def f(a: T) = println("foo")} defined class A scala> (new A).f("bar") <console>:9: error: type mismatch; found : java.lang.String("bar") required: ...
1
vote
1answer
111 views

Abstract type vs. type parameter - where is the difference? [duplicate]

Possible Duplicate: Scala: Abstract Types vs Generics Chapter 20.6 'Abstract types' of 'Programming in Scala' explains the use of an abstract type with an example that ends in the following ...
1
vote
4answers
92 views

Can I provide a default value for an abstract type in Scala?

I have a class like this: abstract class CrudResource extends Controller { type ResourceIdType def getAction(id: ResourceIdType) = ... def deleteAction(id: ResourceIdType) = ... ... } ...
1
vote
2answers
219 views

Implementing covariance using Virtual types (Abstract types)

to ensure covariance there is three ways : Pure covariance : using Eiffel language, Simulating covariance : using casts and overloading Using F-bounded ploymorphism OR virtual types So I am ...
6
votes
4answers
144 views

Scala type inference fails to note that these types are identical, whatever they are

I have a design pattern here where there is an object generator (MorselGenerator and its children), any instance of which always generates the same exact type of object (Morsels and its children), but ...
1
vote
1answer
83 views

How do I get Scala to resolve these abstract types properly

I'm having difficulty crafting a solution to this class hierarchy I want to assemble. I have a abstract data packet "Vertex", and an abstract class "VertexShader" which operates on Vertex instances. ...
4
votes
1answer
162 views

How to compare Ordered abstract type in Scala trait?

Given the code below the method foo should compare operator-wise a given parameter bar with the lowerBound and upperBound all being of the same abstract type Bar. trait Foo { type Bar <: ...
6
votes
2answers
214 views

Scala self type and this.type in collections issue

I'm trying to wrap my head around abstract and explicit self types in scala. Lets consider this example: I want to create a base for extensible tree as simple as this: trait Tree { def children: ...
2
votes
2answers
141 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] }
7
votes
1answer
272 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
109 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[ ...
15
votes
3answers
251 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 ...
2
votes
2answers
269 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 ...
3
votes
3answers
134 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
1answer
438 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
2answers
524 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 ...
2
votes
6answers
491 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: ...
5
votes
2answers
2k 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 ...
9
votes
1answer
394 views

Abstract types versus type parameters

In what situations should abstract types be preferred over type parameters?
8
votes
2answers
1k 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 ...
46
votes
3answers
6k views

Scala: Abstract types vs generics

I was reading A Tour of Scala: Abstract Types. When is it better to use abstract types? For example, abstract class Buffer { type T val element: T } rather that generics, for example, ...