Package: pango
Function pango:fontset-foreach
Lambda Listpango:fontset-foreach (fontset func) ArgumentsDetails Iterates through all the fonts in a fontset, calling func for each
one. If func returns true, that stops the iteration. Examples
(let ((count 0))
(pango:fontset-foreach fontset
(lambda (fontset font)
(declare (ignore fontset))
(let* ((desc (pango:font-describe font))
(str (pango:font-description-to-string desc)))
(format t "~a : ~a~%" count str)
(incf count)
nil)))
count) | See also |
2025-08-24