Ostermillerutil Java Utilities Helper Methods for Arrays - com.Ostermiller.util Java Utilities

Methods that are useful when working with arrays. Contains utilities to concatenate arrays, print arrays, and compare arrays.

Example

ArrayHelper.print(
    ArrayHelper.cat(
        new String[]{
            "one",
            "two"
        },        
        new String[]{
            "three",
            "four"
        }
    )
);

License

OstermillerUtil Java Utilities Copyright (c) 2001-2020 by Stephen Ostermiller and other contributors

The OstermillerUtils library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

License FAQs - Why GPL? How about the LGPL or something else?