glc
glc
It doesn't seem like any of the functions is providing this kind of functionality, so I ended up with this custom `FilterByValueFunc` which you can pass to the `.filter(Func prep)`...
Aha, that's indeed a cleaner approach! Thanks! Small question, is there a specific reason why the order of pred arguments is ```apex pred:: (value, key) ``` and not ```apex pred::...
@liumiaowilson Thank you for the explanation! Really appreciate it! Another thing I'm currently trying to do is; filter the fields that do not have a certain value (or a list...
Thanks! I came up with this: ```apex private class PropInFunc extends Func { public PropInFunc() { super(3); } public override Object exec(Object a, Object b, Object c) { Object value...