PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ _lwt_ReverseElemidArray()

static void _lwt_ReverseElemidArray ( LWT_ELEMID ary,
int  from,
int  to 
)
static

Definition at line 3185 of file lwgeom_topo.c.

3186{
3187 LWT_ELEMID t;
3188 while (from < to)
3189 {
3190 t = ary[from];
3191 ary[from++] = ary[to];
3192 ary[to--] = t;
3193 }
3194}
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: