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

◆ _lwt_ReverseElemidArray()

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

Definition at line 3068 of file lwgeom_topo.c.

3069{
3070 LWT_ELEMID t;
3071 while (from < to)
3072 {
3073 t = ary[from];
3074 ary[from++] = ary[to];
3075 ary[to--] = t;
3076 }
3077}
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: