Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
1answer
512 views

Is it possible to implement liftM2 in Scala?

In Haskell, liftM2 can be defined as: liftM2 :: (Monad m) => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r liftM2 f m1 m2 = do x1 <- m1 x2 <- m2 return $ f x1 x2 I'd like to ...
18
votes
4answers
280 views

C# Lambda performance issues/possibilities/guidelines

I'm testing performance differences using various lambda expression syntaxes. If I have a simple method: public IEnumerable<Item> GetItems(int point) { return this.items.Where(i => ...
10
votes
1answer
238 views

Lifting a higher order function in Haskell

I'm trying to construct a function of type: liftSumthing :: ((a -> m b) -> m b) -> (a -> t m b) -> t m b where t is a monad transformer. Specifically, I'm interested in doing this: ...
3
votes
4answers
134 views

Converting f(x) into f([x]) using decorator in python

class foo(object): def __init__(self,f): self.f = f def __call__(self,args_list): def wrapped_f(args_list): return ...