Go to the first, previous, next, last section, table of contents.


Scanning the list

(cookie-map map-function collection &rest map-args)
Apply map-function to all cookies in collection. map-function is applied to the first element first. If map-function returns non-nil the cookie will be refreshed (its pretty-printer will be called once again). Note that the buffer for collection will be current buffer when map-function is called. map-function must restore the current buffer to buffer before it returns, if it changes it. If more than two arguments are given to cookie-map, remaining arguments will be passed to map-function.
(cookie-map-reverse map-function collection &rest map-args)
Like cookie-map, but map-function will be applied to the last cookie first.
(collection-collect-tin collection predicate &rest predicate-args)
Select cookies from collection using predicate. Return a list of all selected tins. predicate is a function that takes a cookie as its first argument. The tins on the returned list will appear in the same order as in the buffer. You should not rely on in which order predicate is called. Note that the buffer the collection is displayed in is current-buffer when predicate is called. predicate must restore current-buffer if it changes it. If more than two arguments are given to collection-collect-tin the remaining arguments will be passed to predicate.
(collection-collect-cookie collection predicate &rest predicate-args)
Like collection-collect-tin, but a list of cookies is returned.


Go to the first, previous, next, last section, table of contents.