java - best way or similar lambda expression or linq on android (eclipse) -


for example if have

arraylist<product> productlist = new arraylist<product> (); 

how products product.code equals 1 , 2?

is there library can use?

in c# use

productlist.where(product=> product.code.contains(arraywithproductcode)).tolist(); 

or other way using

var newlist=(from p in productlist join in arraywithproduct on a.product equals select p); 

how can in java android?

no lambda expressions in android (or java) yet.

you might want see these options (haven't tested them in android though):

also, see this dzone link , this one. stackoverflow post mentions this.

update:

lambda expression available in java se 8 more information visit:

lambda expressions


Comments

Popular posts from this blog

mod rewrite - Using "?" when rewriting the URL -

.htaccess: Transfer name to index.php if not directory public -

Admob integration with pygame in android -