(skiplist-length skiplist)
This procedure returns the number of elements (nodes) currently in the skip list.
The length is returned as an exact number.
> (define skiplist (skiplist-create))
skiplist
> (skiplist-insert! skiplist '10.0.0.1)
ok
> (skiplist-length skiplist)
1
>