Tagged Questions
Reification refers to process of taking an abstract concept and making a concrete representation out of it.
45
votes
11answers
2k 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 ...
28
votes
6answers
932 views
What “reify” and “reification” means 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 ...
10
votes
4answers
1k 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 ...
6
votes
1answer
203 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 ...
6
votes
1answer
279 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 ...
4
votes
3answers
354 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 ...
4
votes
4answers
202 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 ...
4
votes
2answers
2k 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 ...
3
votes
2answers
68 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 ...
3
votes
3answers
669 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 ...
0
votes
1answer
950 views
Simple example of reification in RDF-XML
Could anybody be so kind to give me a simple example of reification in RDF-XML ? I want to see if I understood it correctly.
For example, I propose the following case
Tolkien -> wrote -> Lord ...