dumptruckman
02/08/2019, 7:38 PMRuckus
02/08/2019, 7:38 PMHexa
02/09/2019, 9:38 AMHexa
02/09/2019, 9:38 AMLeoColman
03/11/2019, 2:46 AMGiorgio Antonioli
03/11/2019, 11:16 AMLeoColman
03/11/2019, 2:16 PMzip
, but it doesn't do thatgroostav
03/11/2019, 6:49 PMgroostav
03/11/2019, 6:49 PMmorbidmerve
03/12/2019, 1:21 PM.
in the decimal string. error message: was expecting comma to separate Array entries
. As far as i can tell jackson is supposed to parse this type just fine as long as the decimal value is encapsulated in "
. Has anyone maybe had a similar issue with this?Vinicius Carvalho
03/12/2019, 3:50 PMval foo = fun()
but is there another way?LeoColman
03/12/2019, 10:05 PMsitepodmatt
03/13/2019, 2:58 AMjacob
03/13/2019, 2:59 AMLinda Zhou
03/13/2019, 5:26 PMbrian
03/13/2019, 7:39 PMTsvetozar Bonev
03/14/2019, 9:09 AMevkaky
03/14/2019, 9:29 AMevkaky
03/14/2019, 9:30 AMType mismatch: inferred type is KFunction3<@ParameterName HttpServletRequest, @ParameterName HttpServletResponse, @ParameterName FilterChain, Unit> but Filter! was expected
Iaroslav Postovalov
03/14/2019, 1:41 PMTravis Griggs
03/14/2019, 2:55 PMUInt
in my code, and it wants me to put @kotlin.ExperimentalUnsignedTypes
seemingly everywhere. Can I not just put one single declaration in the project somewhere? I tried import kotlin.ExperimentalUnsignedTypes
at the top, but that had no effect…Vishal
03/14/2019, 4:24 PMdave08
03/14/2019, 4:45 PMinline class Baz(val s: Map<String, Any>) { operator fun plus(other: Baz): Baz { ... } }
interface Foo { fun eval(param: String): Baz }
fun resolve(f: List<Foo>, p: String): Baz = .... // Should merge Baz's maps (logic for the merge already done) from eval(..) on each Foo in f
dave08
03/14/2019, 4:49 PMvar accBaz = Baz(emptyMap())
for (curr in f) {
val currBaz = curr.eval(p)
accBaz = accBaz + currBaz
}
dave08
03/14/2019, 4:52 PMf.reduce(Baz(emptyMap()) { acc, curr -> acc + curr.eval(p) }
... Kdave08
03/14/2019, 5:48 PMoperator fun plusAssign(other: Baz) { s.mergeWith(other) }
inside the previous Baz inline class, (with a top level fun MutableMap<String, Any>.mergeWith(o: Map<String, Any>
, and s defined as MutableMap)jw
03/14/2019, 7:29 PMHullaballoonatic
03/14/2019, 7:29 PMHullaballoonatic
03/14/2019, 9:38 PM