Tagged Questions
0
votes
0answers
64 views
Overloaded method and reflective calls
In the following REPL session:
scala> new Object { def foo = "bar" }
res0: Object{def foo: String} = $anon$1@131a24c
scala> res0.foo
<console>:9: warning: reflective access of structural ...
3
votes
3answers
90 views
How do I use a structural type with generic parameters?
I have two case classes
case class StringCaseClass(argument: String)
case class IntCaseClass(argument: Int)
I want to define a structural type which will match the companion object of both of ...
1
vote
2answers
83 views
Structural Type Parameters in Scala Collections
Disclaimer: This is a question of what is possible, not what would be recommended in practice.
Let's say you're given the following classes:
case class point1(x: Int, y:Int)
case class point2(x: ...
9
votes
1answer
208 views
Structural typing implementation of OCaml, Scala, and Go
While researching about structural typing I found the following post describing how interfaces in Go are translated to method lookup tables at runtime. The process described in the post seems vastly ...
4
votes
1answer
205 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 ...
7
votes
0answers
249 views
Getting a structural type with an anonymous class's methods from a macro
Suppose we want to write a macro that defines an anonymous class with some type members or methods, and then creates an instance of that class that's statically typed as a structural type with those ...
8
votes
1answer
205 views
Structural subtyping reflection
Can we get the type of val s: String using reflection from the outside of the function f?
val f = (r: {val s: String}) => {
}
6
votes
1answer
193 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
}
...
4
votes
2answers
206 views
Why doesn't type inference work here?
This problem arose in a module I'm writing, but I have made a minimal case that exhibits the same behaviour.
class Minimal[T](x : T) {
def doSomething = x
}
object Sugar {
type S[T] = { def ...
5
votes
1answer
138 views
Structural types and primitives
I was playing around with Scala's structural types when I discovered what looks like a bug to me. Here is my code:
type toD = { def toDouble: Double }
def foo(t: toD) = t.toDouble
foo(5)
And I got ...
4
votes
1answer
120 views
Structural Typing for Traversable
I have this method:
scala> def foo(traversable: Traversable[{def toByte: Byte}]) = {
| traversable.map(_.toByte)
| }
foo: (traversable: Traversable[AnyRef{def toByte: ...
5
votes
1answer
318 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 ...
8
votes
2answers
345 views
Why scala uses reflection to call method on structural type?
If function accepts structural type, it can be defined as:
def doTheThings(duck: { def walk; def quack }) { duck.quack }
or
type DuckType = { def walk; def quack }
def doTheThings(duck: DuckType) ...
3
votes
1answer
173 views
Weird nested structural type in generics
Can someone explain weird construction of structural type nested in generics:
implicit def Function1Functor[R]: Functor[({type λ[α]=(R) => α})#λ] =
new Functor[({type λ[α]=(R) => α})#λ] ....
...
2
votes
1answer
122 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"
...
0
votes
1answer
72 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 ...
1
vote
2answers
229 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?
2
votes
2answers
283 views
Why this structural type bound does not work as expected?
I'm trying to write a simple helper method that receives something that can be closed and some function which receives the former and ensures the "closeable" is closed after executing the function.
...
8
votes
4answers
1k 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 ...
5
votes
2answers
230 views
Why cannot this case of implicit conversions be optimized?
Why cannot Scala optimize the following:
a.
implicit def whatever[A](a: A) = new { ... }
to:
b.
class some$generated$name(a: A) {
...
}
implicit def whatever[A](a: A) = new ...
24
votes
2answers
1k views
Funny observation about (recursive) structural types in Scala
I needed some recursive structural type in some piece of code using with traits and the structural type as type parameter constraint. It worked fine, but later I learned Scala does not support ...
3
votes
3answers
240 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 ...
4
votes
1answer
349 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: ...
7
votes
2answers
580 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
}
...
10
votes
3answers
605 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, ...
5
votes
1answer
1k views
Using Scala structural types with abstract types
I'm trying to define a structural type defining any collection that has an "add" method (for instance, a java collection). Using this, I want to define a few higher order functions that operate on a ...
11
votes
2answers
2k 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 _ => ...