Tagged Questions

7
votes
5answers
1k views

How to turn a Type instance into a generic type argument

I basically have something like this: void Foo(Type ty) { var result = serializer.Deserialize<ty>(inputContent); } Foo(typeof(Person)); The Deserialize<ty> doesn't work because it ...
3
votes
1answer
60 views

Creating a generic class pool where you give the generic parameter and get a generic object that used that parameter

Goal I have a generic class GenericClass<T> and I want to pool instances. I'm interested in seeing if I can get the syntax: MyGenericPool = new GenericPool<GenericClass>(); // Or maybe ...
2
votes
2answers
189 views

Scala fails to infer the right type arguments

Background info: I'm currently trying to set up a generic graph library that includes a few different search algorithms (I've started with Dijkstra's). I've set up a few traits to represent methods ...
1
vote
3answers
57 views

Access class property passed as generic type

I have two classes, which are passed to Serialization method and I would like to access two properties of these classes in Serialization method. The problem is that Serialization method parameter are ...
1
vote
2answers
604 views

Generic TypeOf operator?

Dim x = GetType(List(Of )) 'valid statement Dim list As New List(Of String) Now I want to see if list is a List(Of T) variable: Dim isList = TypeOf list Is List(Of ) On the last line I get a ...
1
vote
2answers
330 views

Extension methods for specific generic types

I'm attempting to create various extension method for a generic type bound to specific generic type parameters in F#, but the language does not seem to be allowing me: What I want to do is something ...
0
votes
3answers
125 views

generic abstract type c++

I want to define a generic class in c++ that allow to execute my algorithm on any data. The problem is that this data can be anything (e.g. a vector of floats, a graph, etc). Is it possible to say in ...
0
votes
2answers
77 views

Proper way to get a generics type argument

The following code gets the first type parameter class declared generically in the interface SomeGenericInterface which gets concretely implemented in the class SomeClass. This code actually works. ...