On Mon, Nov 16, 2009 at 1:10 PM, Jörg Schaible wrote:
> Hi Hen,
>
> Henri Yandell wrote at Samstag, 14. November 2009 10:32:
>
>> Wrapping 5 ArrayUtils issues up in one email to see if we can make
>> decisions on them.
>>
>> LANG-470 Add containsAll(Object[], Object[]) methods to ArrayUtils
>
Hi Hen,
Henri Yandell wrote at Samstag, 14. November 2009 10:32:
> Wrapping 5 ArrayUtils issues up in one email to see if we can make
> decisions on them.
>
> LANG-470 Add containsAll(Object[], Object[]) methods to ArrayUtils
> LANG-531 Add defaultIfEmpty or nullIfEmpty to ArrayUtils
>
On 14/11/2009, Hasan Diwan wrote:
> 2009/11/14 Henri Yandell :
>
> > LANG-470Add containsAll(Object[], Object[]) methods to ArrayUtils
>
>
> public static containsAll(Object[] first, Object[] second) {
>
> for (Object o : first) {
> if (ArrayUtils.contains(second, o) == false) return
2009/11/14 Henri Yandell :
> LANG-470 Add containsAll(Object[], Object[]) methods to ArrayUtils
public static containsAll(Object[] first, Object[] second) {
for (Object o : first) {
if (ArrayUtils.contains(second, o) == false) return false;
}
return ArrayUtils.getLength(first) ==
Wrapping 5 ArrayUtils issues up in one email to see if we can make
decisions on them.
LANG-470Add containsAll(Object[], Object[]) methods to ArrayUtils
LANG-531Add defaultIfEmpty or nullIfEmpty to ArrayUtils
LANG-536Add isSorted() to ArrayUtils
LANG-537Add ArrayUtil