MCPcopy Index your code
hub / github.com/processing/processing / nfc

Method nfc

core/src/processing/core/PApplet.java:9979–9985  ·  view source on GitHub ↗

( begin auto-generated from nfc.xml ) Utility function for formatting numbers into strings and placing appropriate commas to mark units of 1000. There are two versions, one for formatting ints and one for formatting an array of ints. The value for the digits parameter should always be a posi

(int nums[])

Source from the content-addressed store, hash-verified

9977 * @see PApplet#nfs(float, int, int)
9978 */
9979 static public String[] nfc(int nums[]) {
9980 String formatted[] = new String[nums.length];
9981 for (int i = 0; i < formatted.length; i++) {
9982 formatted[i] = nfc(nums[i]);
9983 }
9984 return formatted;
9985 }
9986
9987
9988 /**

Callers 1

setRowCountMethod · 0.95

Calls 2

formatMethod · 0.65
getInstanceMethod · 0.45

Tested by

no test coverage detected