scala-time
scala-time copied to clipboard
A Scala wrapper for Joda Time
Class DurationBuilder is not accessible but it is useful in many occasions. I.e. I would like to create methods like ``` def f(db: DurationBuilder) = ... do something ``` and...
scala-tools.org is going away in June, time to rename this to org.scala-lang or something like that...
This is organizational issue -- could you please provide the package the same way Joda is provided -- jars, sources, etc. I know each user can make those by him/herself...
I cloned the repo, and did mvn clean package. This gives an error on getChronology on DateTimeFormatter of Joda. This method is not present in Joda 1.6. Changing the version...
Hello, I've just found a problem with the toDateTime method of the DateMidnight object: this works new DateTime() + 1.day toDate() this works too new DateMidnight() + 1.day - 1.millis...
If GenericRange becomes non experimental in Scala 2.8, then it should be possible to implement: for (d
Instead of DateTimeFormat.shortDate().print(dateOfBirth) It would be nice to write dateOfBirth.toShortDateString() or dateOfBirth.toString("yyyy-MM-dd")
Recent addition to Scala 2.8pre is the SeqLike.sortBy method which allows you to say listOfPerson.sortBy(person => person.name) listOfPerson.sortBy(person => person.shoeSize) listOfPerson.sortBy(person => person.salary) but not currently listOfPerson.sortBy(person => person.dob) The...