PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ _lwt_ReverseElemidArray()

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

Definition at line 2998 of file lwgeom_topo.c.

2999 {
3000  LWT_ELEMID t;
3001  while (from < to)
3002  {
3003  t = ary[from];
3004  ary[from++] = ary[to];
3005  ary[to--] = t;
3006  }
3007 }
LWT_INT64 LWT_ELEMID
Identifier of topology element.

Referenced by _lwt_RotateElemidArray().

Here is the caller graph for this function: