Reification refers to process of taking an abstract concept and making a concrete representation out of it.
0
votes
1answer
58 views
type constraints and reifications regarding to joinLeft of Either
joinLeft is defined as:
abstract class Either[+A, +B]
def joinLeft[A1 >: A, B1 >: B, C](implicit ev: A1 <:< Either[C, B1]):
Either[C, B1] = this match {
case Left(a) => a
...
11
votes
1answer
166 views
What do C# generic methods on a non-generic class boil down to?
If I have a class like this: -
static class Foo {
public static void Bar<T>(T item) { Console.WriteLine(item.ToString(); }
}
I know that in this example it's unnecessary to use T since ...
1
vote
0answers
156 views
Does reification of scala expressions work in v2.9?
I was playing around with scala lifting and I accidentally discovered that Scala seems has some sort of implicit support for lambda expressions.
import scala.reflect.Code
import ...
1
vote
2answers
89 views
StackOverflowError during macro expansion of reify
I have a simple test macro that uses reify. It causes a StackOverflowError during macro expansion.
def test() = macro testimpl
def testimpl(c:Context)():c.Expr[Any] = {
import c.universe._
val o ...
63
votes
1answer
5k views
Scala 2.10: What is a TypeTag and how do I use it?
All I know about TypeTags is that they somehow replaced Manifests. Information on the Internet is scarce and doesn't provide me with a good sense of the subject.
So I'd be happy if someone shared a ...
2
votes
1answer
91 views
The relationship between quotation, reification and reflection
I recently get confused with quotation, reification and reflection. Someone could offer a good explanation about their relationship and differences (if any)?
6
votes
2answers
652 views
Overloading generic event handlers in Scala
If I define the following generic event handler
trait Handles[E <: Event] {
def handle(event: E)
}
with event type's like this
trait Event {
}
class InventoryItemDeactivated(val id: UUID) ...
10
votes
1answer
448 views
For Scala are there any advantages to type erasure?
I've been hearing a lot about different JVM languages, still in vaporware mode, that propose to implement reification somehow. I have this nagging half-remembered (or wholly imagined, don't know ...
7
votes
2answers
401 views
What are the limitations of Scala's Manifests?
Scala's Manifests are a way to get around some type erasure problems due to the JVM's lack of reified generics.
They are discussed in several other questions; here are a few:
What is a Manifest in ...
36
votes
6answers
2k views
What do “reify” and “reification” mean in the context of (functional?) programming?
I read this term a lot in blogs about haskell and functional programming (specially in sigfpe's blog) but I don't have a clue about what it means. I get away with not knowing it most of the times, but ...
4
votes
2answers
100 views
Simple Format for Implicit Reification
Is there any RDF serialization format (like Notation 3) that supports implicit reification for easily representing statements about statements?
For example, say I have the statement "Mary bought a ...
4
votes
3answers
635 views
Scala: Method overloading over generic types
In C# I can overload methods on generic type as shown in the example below:
// http://ideone.com/QVooD
using System;
using System.Collections.Generic;
public class Test {
public static void ...
5
votes
4answers
315 views
How does C# generics affect collections with primitives
As I understand it, C#/.Net generics support some degree of reification. So, if I have the following code:
List<int> list = new List<int>();
list.Add(1);
Will the value 1 be autoboxed ...
5
votes
3answers
1k views
Any word on reified generics in Java?
I know this question will probably provoke more discussion than concrete answers (which I know isn't preferable). But with the recent acquisition by Oracle, I was wondering if there's been any word ...
60
votes
10answers
3k views
Why should I care that Java doesn't have reified generics?
This came up as a question I asked in an interview recently as something the candidate wished to see added to the Java language. It's commonly-identified as a pain that Java doesn't have reified ...
4
votes
1answer
2k views
Simple example of reification in RDF
Could anybody be so kind to give me a simple example of reification in RDF? I want to see if I understood it correctly.
For example, I propose the following case
Tolkien -> wrote -> Lord of ...
13
votes
6answers
2k views
Versioned RDF store
Let me try rephrasing this:
I am looking for a robust RDF store or library with the following features:
Named graphs, or some other form of reification.
Version tracking (probably at the named ...
5
votes
2answers
4k views
Casting to a Class which is determined at run-time
I have a method fetchObjects(String) that is expected to return an array of Contract business objects. The className parameter tells me what kind of business objects I should return (of course this ...