PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ _lwt_ReverseElemidArray()

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

Definition at line 3055 of file lwgeom_topo.c.

Referenced by _lwt_RotateElemidArray().

3056 {
3057  LWT_ELEMID t;
3058  while (from < to)
3059  {
3060  t = ary[from];
3061  ary[from++] = ary[to];
3062  ary[to--] = t;
3063  }
3064 }
LWT_INT64 LWT_ELEMID
Identifier of topology element.
Here is the caller graph for this function: