1
vote
3answers
37 views
Automapper, generics, dto funtimes
Here's the deal:
I have a report designer where users can create reports based on some predefined datasets. They can select a set of columns to include in the report and then, whe …
1
vote
3answers
95 views
Java generics issue with Class
Can't figure out this generics problem. I have these interfaces:
public interface LoadableObject
{
}
public interface LoadableObjectFactory<T>
{
}
And now I want to do thi …
4
votes
1answer
42 views
Forcing F# type inference on generics and interfaces to stay loose
We're gettin' hairy here. I've tested a bunch of tree-synchronizing code on concrete representations of data, and now I need to abstract it so that it can run with any source and t …
2
votes
2answers
69 views
Type inference: Using generic methods with implicit type conversion
The problem is that you want to flatMap a List[Option[T]] to a List[T] :
val l = List(Some("Hello"), None, Some("World"))
to get:
List(Hello, World)
but there is no nice solu …
1
vote
4answers
100 views
Can you specify generics type on map value?
In Java (5+) you can do:
TreeMap<String, List> map = someObject.getMap();
But can specify the generic type within the List? A la:
TreeMap<String, List<String>&g …
0
votes
3answers
169 views
IList implementations fall into three categories: read-only, fixed-size, variable-size
What does this mean? I am returning a IList<T> from my business layer and then adding items from the UI, but the app is complaining that it's a fixed-size list. How can I ove …
2
votes
2answers
147 views
c# - How to deserialize a generic list<T> when I don’t know the type of (T)?
Hi, for auditory reasons I stores the arguments of the business methods serialized into the database using the binaryformatter.
The problem is that when an argument is a generic …
1
vote
4answers
56 views
The type Collection is not generic; it cannot be parameterized with arguments <? extends E>
Hi!
I have a strange problem with eclipse galileo.
I set java 1.6 as jre. And for this line of the code
List templates = new ArrayList ();
I see such error in eclipse problem li …
0
votes
6answers
92 views
How to use an Interface as Map’s Key
I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integrat …
0
votes
4answers
37 views
Define an anonymous structure as a parameter in a method
Can I define an object-structure as a parameter to a method in the parameter declaration without having to create a type?
I am inspired by LINQ to SQL queries, where you are able …
0
votes
0answers
38 views
Why is flatten declared on GenericTraversableTemplate and not TraversableLike?
The signature of TraversableLike.flatMap is as follows:
def flatMap[B, Th](f : (A) => Traversable[B])(implicit bf : CanBuildFrom[Repr, B, Th]) : Th
The signature of GenericTr …
2
votes
3answers
58 views
The same property name but different return type in a generic list
Beginner's question: How to implement a generic list List<Item> returning items with a property named Data but returning different types for different subclasses? I started b …
0
votes
5answers
120 views
Generic method with Action<T> parameter
So, I'm sure this has been answered somewhere out there before, but I couldn't find it anywhere. Hoping some generics guru can help.
public interface IAnimal{}
public clas …
0
votes
3answers
66 views
Why do several java.util.List methods not use the type parameter? [closed]
Possible Duplicate:
What are the reasons why Map.get(Object key) is not (fully) generic
This is similar to the question here, on java.util.Map. This question is left as a …
0
votes
5answers
99 views
What’s wrong with my generic method?
the following generic method gives the compile error "Error 13 Value of type 'Distribution' cannot be converted to 't'" :
Public Shared Function CreateObject(Of t)(ByVal ID As Int …
