Java Utililty Methods Long Number Align

List of utility methods to do Long Number Align

Description

The list of methods to do Long Number Align are organized into topic(s).

Method

longalignUp(long b, long a)
Example: alignUp( 700, 512 ) -> 1024
return (long) (Math.ceil((double) b / a) * a);