Package com.gs.collections.api.block.function.primitive

Examples of com.gs.collections.api.block.function.primitive.CharToCharFunction


     * @deprecated since 3.0. Use {@link #collect(String, CharToCharFunction)} instead.
     */
    @Deprecated
    public static String collect(String string, final CharFunction function)
    {
        return StringIterate.collect(string, new CharToCharFunction()
        {
            public char valueOf(char charParameter)
            {
                return function.valueOf(charParameter);
            }
View Full Code Here

TOP

Related Classes of com.gs.collections.api.block.function.primitive.CharToCharFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.