lowLong
Syntax
lowLong(X)
Arguments
X is a scalar/vector/table/data pair/dictionary which must be 16-byte data type (UUID, IPADDR, INT128, COMPLEX, and POINT are supported).
Details
It returns the low-order 8-byte long integer data of X.
Examples
x =ipaddr("192.168.1.13")
x1 = lowLong(x)
print(x1)
//output
3232235789
x=1 2 3 4
y=4 3 2 1
points = point(x, y)
x1 = lowLong(points)
//output
[4607182418800017408,4611686018427387904,4613937818241073152,4616189618054758400]
Related function: highLong