Hi everybody,what kind of data structure is {1f,3f} ??type {3f,4f} /100hWhere can i find information about this datastructure?Cheers,Kim
> what kind of data structure is {1f,3f} ??It’s a compiled function, sometimes known as a “lambda”.Your example doesn’t have an arguments, but it’s compiled and treatedlike any other 1-ary function (whatever you pass to it is ignored).
On 12 Feb., 15:30, andyturk <andyt…> wrote:> > what kind of data structure is {1f,3f} ??>> It’s a compiled function, sometimes known as a “lambda”.It was a stupid question from me. This question came into my mind wheni studied the different waysto store complex numbers. One suggestion was to store it as {1f,3f}. Ithought it was another kind of different data structure.Nevertheless, thx for your answer.>> Your example doesn’t have an arguments, but it’s compiled and treated> like any other 1-ary function (whatever you pass to it is ignored).</andyt…>