Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following Scala class:

class Person(var name : String, var age : Int, var email : String)

I would like to use the Person constructor as a curried function:

def mkPerson = (n : String) => (a : Int) => (e : String) => new Person(n,a,e)

This works, but is there another way to accomplish this? This approach seems a bit tedious and error-prone. I could imagine something like Function.curried, but then for constructors.

share|improve this question

2 Answers

up vote 11 down vote accepted

This will work:

def mkPerson = (new Person(_, _, _)).curried
share|improve this answer
+1, but you shouldn't need those type ascriptions. def mkPerson = (new Person(_, _, _)).curried – pelotom Oct 5 '10 at 17:04
1  
Oh, indeed. I thought I needed them because of weird constructor thingies. – Daniel C. Sobral Oct 5 '10 at 20:31
Just a quick note, if you're sure to call it may as well make it val mkPerson = .... Also, if Person were a case class you could simply use (Person.apply _).curried – Geoff Reedy Oct 5 '10 at 22:13
Thanks a lot. This is indeed a lot more concise. – Chris Eidhof Oct 6 '10 at 13:15

may be so:

val mkPerson = Function.curried((n: String,a:Int,e:String) => new Person (n,a,e))
share|improve this answer
I see. It's still more complex than I'd hoped for: I was thinking of something more along the lines of Haskell constructors. – Chris Eidhof Oct 5 '10 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.