PATHITEM

The PATHITEM function returns the item that occupies the indicated position in a string resulting from executing the PATH function, being the positions counted from left to right.

Submitted by admin on Tue, 01/29/2019 - 11:47

hash

The hash function returns the hash value of the object passed as a argument -if any-. Hash values are integers. Numeric values that, when compared, return True have the same associated hash value, even if they are of different type.

Submitted by admin on Fri, 01/25/2019 - 16:45

PATH

The PATH function, used in hierarchical data environments (see example below), returns a text string with the identifiers of all parents of the current identifier, starting with the furthest.

Submitted by admin on Thu, 01/24/2019 - 11:54

input

The input function returns the value of prompt -if it has been included as an argument to the function-, reads a line from the standard input -the keyboard, by default-, converts it to a text string and returns it as result of the function.

Submitted by admin on Wed, 01/23/2019 - 14:50

SELECTCOLUMNS

The SELECTCOLUMNS function returns a table made up of columns calculated from an existing table or from an expression that returns a table.

Submitted by admin on Tue, 01/22/2019 - 22:08

enumerate

The enumerate function accepts as an input argument a sequence, an iterator or another object that supports iteration and returns an iterator of type "enumerate" composed of tuples formed by a counter (starting with the value start) and each of the values of the input iterator.

Submitted by admin on Mon, 01/21/2019 - 21:39