Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
237 views

Types in Haskell

I'm kind of new in Haskell and I have difficulty understanding how inferred types and such works. map :: (a -> b) -> [a] -> [b] (.) :: (a -> b) -> (c -> a) -> c -> b What ...
4
votes
4answers
338 views

Unboxing to unknown type

I'm trying to figure out syntax that supports unboxing an integral type (short/int/long) to its intrinsic type, when the type itself is unknown. Here is a completely contrived example that ...
3
votes
2answers
91 views

Java Generics: how can i assign a method's return value which uses multiple inheritance

I have a method which returns a complex generic type (which implements multiple interfaces) protected abstract <BOB extends Stan & Jan<I>> BOB getStanAndJanItem(); This compiles ...
3
votes
2answers
131 views

How can I refactor our the type parameter from this code?

I want to write an extension method that tests if an attribute is applied on a method call, and I'd like to specify the method as a lambda expression. Currently, I have the following (working) ...
1
vote
4answers
440 views

Why does the IEnumerable<T>.Select() works in 1 of 2 cases ? Can not be inferred from usage

I get this error message: The type arguments for method 'System.Linq.Enumerable.Select<TSource,TResult>(System.Collections.Generic.IEnumerable<TSource>, ...
1
vote
1answer
175 views

Help with possible Haskell type inference quiz questions

foldr:: (a -> b -> b) -> b -> [a] -> b map :: (a -> b) -> [a] -> [b] mys :: a -> a (.) :: (a -> b) -> (c -> a) -> c -> b what is inferred type of: a.map mys ...
1
vote
2answers
138 views

Why doesn't C# allow for global inferred types i.e. using var?

I know it can't be done since using var can only be done for local variables. I'm just wondering if anyone has a theory why the C# team thought this should be so. e.g. what would be wrong with this: ...
1
vote
3answers
445 views

Haskell question about function

Working out of RWH, Chapter 3 question 5 requests I create a function to test for the existence of a paldindrome. I wrote this, but it doesn't work pCheck :: (Eq a) => [a] -> Bool; pCheck a = ...
0
votes
7answers
107 views

c# if else then statement with LINQ

I have the following code: if (intval == 0) { var result = (from dm in datacontext.Trk where dm.ID == 0 select dm); } else { var result = (from dm in ...
0
votes
1answer
69 views

Alternative coding to a conditional var inferred-type query LINQ to XML?

This is a follow up on a related topic found here http://stackoverflow.com/questions/1987485/conditionally-assign-c-var-as-elegant-as-it-gets if I am doing the following: var query = ...