napperley
04/21/2020, 2:49 AMSimon Schubert
04/22/2020, 11:34 AMpoohbar
04/22/2020, 1:58 PMEllen Spertus
04/22/2020, 8:59 PMShawn
04/22/2020, 11:16 PM@Builder
doesn’t quite work for us in this casedanny
04/23/2020, 7:17 PMursus
04/24/2020, 7:15 AMnapperley
04/25/2020, 2:39 AMlouiscad
04/26/2020, 12:11 PMAlina Dolgikh [JB]
akshay_b
04/28/2020, 1:26 PMobject : GenericType<Pair<F, S>>() {}
produces raw type of GenericType<Pair<? extends F, ? extends S>>
how to remove ? extends
Thanks in advance 🙂Ashish Kumar Joy
04/30/2020, 2:52 PMSlackbot
04/30/2020, 3:56 PMgenovich
05/06/2020, 7:42 AMNezteb
05/06/2020, 6:14 PMLeoColman
05/06/2020, 7:23 PMbaxter
05/07/2020, 1:32 AMnino
05/07/2020, 8:42 PMShawn
05/13/2020, 4:26 AMv0ldem0rt
05/13/2020, 4:51 PMNezteb
05/13/2020, 7:51 PMHiosdra
05/14/2020, 10:20 AMclass Offer(
id: Offer.Id
...
)
Database:
fun getOffersIds(): List[Offer.Id]
or
fun getOfferIds(): List[Offer.Id]
Which is more correct in english language?jaguililla
05/16/2020, 7:22 PMelect
05/19/2020, 10:21 AMexpression.trim().toCharArray()
-> expression.trim { it <= ' ' }.toCharArray()
is there a reason?thanksforallthefish
05/25/2020, 12:06 PMcartesianProduct
?
listOf(1, 2, 3, 4).cartesianProduct() shouldContainExactlyInAnyOrder listOf(
listOf(1),
listOf(2),
listOf(3),
listOf(4),
listOf(1, 2),
listOf(1, 3),
listOf(1, 4),
listOf(2, 3),
listOf(2, 4),
listOf(3, 4),
listOf(1, 2, 3),
listOf(1, 2, 4),
listOf(1, 3, 4),
listOf(2, 3, 4),
listOf(1, 2, 3, 4)
)
permutations? combinations?
I know it is something, but cannot figure out whatRuckus
05/27/2020, 4:56 PMnapperley
05/30/2020, 12:04 AMursus
05/31/2020, 1:28 AMjaguililla
06/03/2020, 9:52 AMnapperley
06/04/2020, 11:37 PM