Today, I've oddly found IncrementValue in Coldfusion. In my previous time, when I need to increase count in Coldfusion, I always use as follow.

view plain print about
1<cfset mycount = mycount + 1>
2
3<!--- CFScript version --->
4<cfscript>
5    mycount++;
6
</cfscript>

Now I don't need to use above native coding and should use IncrementValue instead. Usage is kinda simple.

view plain print about
1<cfset mycount = 0>
2<cfset mycount = IncrementValue(mycount)>

As Adobe documentation, The integer part of number, incremented by one. It's so sad that we cannot use like step attribute in CFLoop in this built-in function.