Top "Reification" questions

Reification refers to process of taking an abstract concept and making a concrete representation out of it.

Scala: 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 …

scala types scala-2.10 reification
Kotlin generics Array<T> results in "Cannot use T as a reified type parameter. Use a class instead" but List<T> does not

I have an interface that contains an array (or list) of T and some metadata. interface DataWithMetadata<T> { …

java arrays generics kotlin reification
What is reification?

I know that Java implements parametric polymorphism (Generics) with erasure. I understand what erasure is. I know that C# implements …

c# generics reification
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 …

rdf reification
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 …

java generics reification
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 …

haskell functional-programming metaprogramming terminology reification
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 …

java generics reflection casting reification