ascIdSort function

int ascIdSort(
  1. dynamic a,
  2. dynamic b
)

Implementation

int ascIdSort( a, b ) {
	return a - b;
}