Scala collections provide you three options for sorting: sorted( ), sortWith( ) and sortBy( ). Here is a simplified explanation:
sorted
Will sort the list using the natural ordering (based on the implicit Ordering passed)
sortBy (an attribute)
Sort by a given attribute using the attribute's type.
e.g. given a list of Person objects, if you want to sort them in ascending order of their age (which is an Int), you could simply say: personList.sortBy(_.age)
sortWith (a function)
Takes a comparator function. Useful when you want to specify a custom sorting logic.
e.g. if you want to sort by age descending, you could write this as:
personList.sortWith{(leftE,rightE) =>
leftE.age > rightE.age
}
Or, more simply: personList.sortWith(_.age > _.age)
Checkout this gist for a full example:
https://gist.github.com/gsluthra/80555ed4af24bea244b5
Friday, July 25, 2014
you just read the article entitled All New Difference between sorted, sortWith and sortBy in Scala if you feel this information is useful for you and want to bookmark it or want to share it please use link https://mjoaobrum.blogspot.com/2014/07/all-new-difference-between-sorted.html.
Tag :
All New Difference between sorted, sortWith and sortBy in Scala
By
Unknown
at
July 25, 2014
All New Difference between sorted, sortWith and sortBy in Scala - do you know that every day there are new gadgets that are created with new advantages to simplify your life, on the blog Gadget Center we will discuss about the latest gadgets and gadgets that have long ranging from speck and price, now we will discuss about All New Difference between sorted, sortWith and sortBy in Scala we have collected a lot of news to make this article to be really useful for you, please see.
Articles : All New Difference between sorted, sortWith and sortBy in Scala
full Link : All New Difference between sorted, sortWith and sortBy in Scala
Articles : All New Difference between sorted, sortWith and sortBy in Scala
full Link : All New Difference between sorted, sortWith and sortBy in Scala
You can also see our article on:
All New Difference between sorted, sortWith and sortBy in Scala
article titled All New Difference between sorted, sortWith and sortBy in Scala has been completed in the discussion
hopefully information about All New Difference between sorted, sortWith and sortBy in Scala can provide benefits for you in determining the gadget to suit your needs so much easier in living everyday life.
you just read the article entitled All New Difference between sorted, sortWith and sortBy in Scala if you feel this information is useful for you and want to bookmark it or want to share it please use link https://mjoaobrum.blogspot.com/2014/07/all-new-difference-between-sorted.html.
Tag :
Tags :
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment