Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
179 views

Is there any generic Hashable typeclass in Haskell? (a.k.a. “deriving (Hashable)”)

Has anyone written a generic function so that hash functions can be generated automatically for custom data types (using the deriving mechanism)? A few times, I've written the following kind of ...
5
votes
5answers
382 views

Trying to learn: Object Reorientation, and generic functions in LISP!

im reading Practical common Lisp as a result of another question. I just read chapter 16 and 17 where you can find how LISP manages objects. But after a couple of years of thinking how Java manages ...
4
votes
2answers
113 views

What is the parameter type for a generic function parameter when called from a base class with 'this'?

Confusing question, I know. Given the following: class Test { public static void GenericFunc<T>(T SomeType) { System.Console.WriteLine("typeof(T): " + ...
3
votes
1answer
233 views

Create a delegate of a generic function

I'm writing some unit tests and I have a lot of functions of the form public void SomeTestHelperMethod<TKey, TValue>(TKey key, TValue value) which I'm calling repeatedly with various ...
1
vote
1answer
56 views

Negative effects of using a generic function like this?

My question here is, what are the negative effects of using a generic function such as this? Calling this function does work, and in a test console module, it compiles perfectly fine. I do know this ...
1
vote
3answers
173 views

problem writing a simple STL generic function

I'm self-learning how to create generic functions using iterators. As the Hello World step, I wrote a function to take the mean in the given range and returns the value: // It is the iterator to ...
0
votes
3answers
38 views

Why doesn't a seperately instantiated Func<T,bool> predicate not translate into SQL with Entity Framework?

I have an EF Code First Db context that I'm using to query the database. I noticed some performance issues when passing in queries as Func<Product, bool>s from my Aggregate Repository and on ...