Package: gio
Function gio:list-store-new
Lambda Listgio:list-store-new (gtype) ArgumentsReturn ValueThe new g:list-store object. Details          Creates a new list store with items of gtype type.    The gtype type must be a subclass of the g:object class.   Examples
(defun create-application-list ()
  (let ((store (g:list-store-new "GAppInfo"))
        (apps (g:app-info-all)))
    (dolist (app apps)
      (g:list-store-append store app))
  store))             | See also | 
2025-4-11