newLISP Fan Club

Forum => newLISP in the real world => Topic started by: joejoe on August 30, 2020, 03:07:07 AM

Title: using ref data
Post by: joejoe on August 30, 2020, 03:07:07 AM
The ref and ref-all functions bring back an address or list of addresses.



As cormullion wrote in the nL wikibook:


(ref-all "Brian Eno" itunes-data)
;-> ((0 2 14 528 6 1) (0 2 16 3186 6 1) (0 2 16 3226 6 1))


What would be the best way to get that data instead of the numerical addresses?



Essentially, once I find the address is (0 2 14 528 6 1), how best would I get what it actually is, not the address?



So how best to get (0 2 16 3186 6 1) data?



Thank you!
Title: Re: using ref data
Post by: newBert on August 31, 2020, 06:38:25 AM
Sorry, I don't have time to answer from a concrete example that should first be created. But I think there are some interesting tracks in the wikibook, especially here (//https) (see 'find-all' at the end).
Title: Re: using ref data
Post by: fdb on September 01, 2020, 10:45:49 AM
Hi joejoe ,



the best way to get the data would be to map over the results and use implicit indexing.



So ref-all would give you a list of indices, probably the data you're looking for is one level up in this structure, then I would do:

(map (fn(x) (itunes-data (chop x))) (ref-all "Brian Eno" itunes-data))
Title: Re: using ref data
Post by: cameyo on September 02, 2020, 12:34:07 AM
Hi joejoe,

the "ref-all" and "ref" functions have a parameter to get data instead of indexes.
(setq lst '(a b c (d a f (a h a)) (k a (m n a) (x))))
(ref-all 'a lst)
;-> ((0) (3 1) (3 3 0) (3 3 2) (4 1) (4 2 2))
(ref-all 'a lst = true)
;-> (a a a a a a)

But maybe I misunderstood the question.

cameyo
Title: Re: using ref data
Post by: newBert on September 02, 2020, 03:14:14 AM
Quote from: cameyo post_id=24928 time=1599032047 user_id=732
the "ref-all" and "ref" functions have a parameter to get data instead of indexes.


Well seen ! I had completely forgotten this option.

Thanks, Cameyo.
Title: Re: using ref data
Post by: joejoe on September 10, 2020, 10:30:50 PM
Thanks very much for all the exemplars!



ref and map seem to carry things out quite well!



Much appreciated!