Stephanie News, Dell USB Drivers, Android Devices, Charging, Apple, Nokia Flash File, Samsung Galaxy

Jumat, 25 Juli 2014

Difference between sorted, sortWith and sortBy in Scala

Difference between sorted, sortWith and sortBy in Scala - with the rapid development of today's technology we must enrich our knowledge of gadgets, because every day there are many new gadgets that are made with advantages, in blogs Stephanie News we will meriview many gadgets from various brands ranging from the specification and its price .. Now we will discuss first about Difference between sorted, sortWith and sortBy in Scala please see our explanation to finish:

Articles : Difference between sorted, sortWith and sortBy in Scala
full Link : Difference between sorted, sortWith and sortBy in Scala

You can also see our article on:


Difference between sorted, sortWith and sortBy in Scala

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





we feel the information Difference between sorted, sortWith and sortBy in Scala that's all.

hopefully the information Difference between sorted, sortWith and sortBy in Scala that we have conveyed can provide benefits for you and all visitors of this blog, if any criticism and suggestions please comment.

you just read Difference between sorted, sortWith and sortBy in Scala if this article is considered useful and you want to bookmark and share it please use the link https://stephaniefulke.blogspot.com/2014/07/difference-between-sorted-sortwith-and.html and what if you want other information look for another page in this blog.

Tag :
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : Difference between sorted, sortWith and sortBy in Scala

0 komentar:

Posting Komentar