All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.intrinsic.PromptoChar Maven / Gradle / Ivy

The newest version!
package prompto.intrinsic;


public abstract class PromptoChar {

	public static String multiply(char c, int count) {
        char[] cc = new char[count];
        for (int i = 0; i < count; i++)
            cc[i] = c;
        return new String(cc);
		
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy