Feature Overview
This feature converts %
to Math.mod
.
This feature converts %
to Math.mod
.
None
public class ModDemo {
public static void test() {
System.debug(1 % 5);
}
}
public class ModDemo {
public static void test() {
System.debug(Math.mod(1, 5));
}
}
Contribute on Github! Edit this section.