convex.gui.utils.TextFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-gui Show documentation
Show all versions of convex-gui Show documentation
Convex desktop GUI and test applications
The newest version!
package convex.gui.utils;
import convex.core.text.Text;
public class TextFormat {
public String convexBalance(long bal) {
return Text.toFriendlyNumber(bal);
}
}