Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
459 views

Scala - how to define a structural type that refers to itself?

I'm trying to write a generic interpolate method that works on any type that has two methods, a * and a +, like this: trait Container { type V = { def *(t: Double): V def +(v: V): V } ...
4
votes
1answer
281 views

Generalized structural type conformance in Scala

I'm interested in the problem of conforming a specific type to a more general structural type. Consider the following examples: trait Sup trait Sub extends Sup type General = { def contra(o: ...
8
votes
4answers
848 views

Clojure Protocols vs Scala Structural Types

After watching the interview with Rich Hickey on Protocols in Clojure 1.2, and knowing very little about Clojure, I have some questions on Clojure Protocols: Are they intended to do the same thing ...
10
votes
2answers
1k views

Pattern matching structural types in Scala

Why does this print wtf? Does pattern matching not work on structural types? "hello" match { case s: { def doesNotExist(i: Int, x: List[_]): Double } => println("wtf?") case _ => ...
4
votes
2answers
564 views

Namespace scoped aliases for generic types in C#

Let's have a following example: public class X { } public class Y { } public class Z { } public delegate IDictionary<Y, IList<Z>> Bar(IList<X> x, int i); public interface IFoo { ...
11
votes
6answers
746 views

Duck typing, must it be dynamic? [CW]

Wikipedia currently says about duck-typing: In computer programming with object-oriented programming languages, duck typing is a style of dynamic typing in which an object's current set of ...
3
votes
3answers
213 views

Why do compile-time generative techniques for structural typing prevent separate compilation?

I was reading (ok, skimming) Dubochet and Odersky's Compiling Structural Types on the JVM and was confused by the following claim: Generative techniques create Java interfaces to stand in for ...
0
votes
1answer
59 views

Supply Structural type in method type parameterization at runtime?

Follow-up to this SO question. Suppose I have the code def bar(param: {def foo: Unit}*) = param.foreach(x => x.foo) This function causes object param to invoke a method named foo [EDIT] I ...
7
votes
1answer
123 views

Is it possible to implement `??` (a null coalescing operator from C#) in Scala that does not use reflection?

I've found somewhere an implementation of C# null coalescing operator '??': implicit def coalescingOperator[T](pred: T) = new { def ??[A >: T](alt: =>A) = if (pred == null) alt else pred } ...
6
votes
3answers
378 views

Does C# have an equivalent to Scala's structural typing?

In Scala, I can define structural types as follows: type Pressable = { def press(): Unit } This means that I can define a function or method which takes as an argument something that is Pressable, ...
4
votes
1answer
139 views

accept multiple types for a parameter in scala

I have two objects, ObjectA and ObjectB, both with a method update(). I want to write a function that accepts either ObjectA or ObjectB (but no other types). Conceptually, this is what I am trying ...
2
votes
1answer
69 views

How to do structural typing in scala that ALSO only accepts subclasses?

Instead of describing the problem in words, let me just show you a Scala Interpreter session that shows what I want to do. scala> class A extends Parent{ | def name = "Alex" ...
1
vote
2answers
177 views

How to use structural types in isInstanceOf calls?

The title basically says it. Is there a way to use the type of e. g. new Object {def foo = "bar"} in an isInstanceOf[<structural_type_here>] call?