Structural typing is the ability of a type system to identify a type based on what data it contains, rather than how a type is named.
1
vote
2answers
47 views
Why does C# tease with structural typing when it absolutely knows it doesn't have it?
I was surprised to see today that this was possible, but I worry this must be discussed before.
public interface ICanAdd
{
int Add(int x, int y);
}
// Note that MyAdder does NOT implement ...
1
vote
3answers
101 views
Interfaces and Fields in Go
I started looking into Go after playing around with structural typing in other languages like Scala and OCaml, and I'm trying map some of the idiomatic techniques between the languages. Consider the ...
0
votes
0answers
62 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
81 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
206 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
203 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
247 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}) => {
}
2
votes
2answers
167 views
Imperative languages with static, structural typing and global type inference
I know of languages like Haskell being statically typed and having type inference. But are there non-functional languages that have global type inference, the equivalent of something like C with type ...
9
votes
1answer
262 views
What is “Structural Typing for Interfaces” in TypeScript
In his blog post about TypeScript, Mark Rendle is saying, that one of the things he likes about it is:
"Structural typing for interfaces. I really wish C# could do that"
What did he mean by ...
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
}
...
2
votes
1answer
91 views
How to write type constraint for a event member?
WPF controls have many event members which has a same name without sharing the same interface or the base class.
F#'s type constraint enables writing function which works on all the objects which has ...
4
votes
2answers
205 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
119 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
317 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
343 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) ...
2
votes
8answers
760 views
C# method that accepts multiple objects that have common properties?
I have several objects with a few properties that are common to all of them. For example:
Object A is of type X and it has 10 properties
Object B is of type Y and it has 15 properties
Object C is ...
3
votes
1answer
172 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
121 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 ...
8
votes
5answers
458 views
Why interfaces must be declared in Java?
Sometimes we have several classes that have some methods with the same signature, but that don't correspond to a declared Java interface. For example, both JTextField and JButton (among several others ...
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
228 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
579 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
}
...
1
vote
4answers
172 views
Optional structural typing possibilty in C++ or anyother language?
In C++ how to tell compiler that Ogre::Vector3 IS_SAME_AS SomeOtherLIB::Vector3 ?
I feel that.. in languages like c++ which are not structural typed but there are cases when it makes sense.
Normally ...
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 ...
6
votes
2answers
930 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
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 _ => ...
12
votes
6answers
1k 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 ...