Files
gio/ui
Elias Naur fe4a61ec89 ui/layout: make List more friendly to for loops
With this change, a List l can be iterated with

    for l.Init(...); l.More(); l.Next() {
        l.Elem(..., l.Constraints(), l.Index())
    }

instead of

   l.Init(...)
   for {
       i, cs, ok := l.Next()
       if !ok {
               break
       }
       l.End(..., cs, i))
    }

Signed-off-by: Elias Naur <mail@eliasnaur.com>
2019-07-11 18:07:16 +02:00
..
2019-07-11 15:08:25 +02:00
2019-07-05 17:14:57 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 14:45:26 +02:00
2019-07-03 20:26:19 +02:00
2019-07-03 20:26:19 +02:00
2019-07-05 16:52:13 +02:00