dict lookup via c

Content-Disposition: inline

hi,

i create a dict in c:
K d=xD(x,y);

how do i look up a value in d?
or does d have to be sent to a server and run a query on it?

ta, jack

where this code is? a separate client or a share lib loaded in q?

in a shared lib, let q lookup the value:

v=k(0,“@”,r1(d),v,(K)0);

in c you need to iterate over kK(d)[0] and check each entry for your value.

felix