Is it possible in android studio to generate the l...
# android
c
Is it possible in android studio to generate the lambda required for a parameter argument? What I used to do was type new Fuction3() and then use the tools to transform it into a lambda. What I’d love to be able to do is ctrl space and get the template put in place for the lambda. Especially when I’m using rxjava and
withLatestFrom(o1, o2)
l
would
Live Templates
work for you?
c
Is that with cmd + J for live templates? I think that did work, but it didnt infer the types for the generic
<>