diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-07-16 20:27:00 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-07-16 20:28:21 -0400 |
commit | b9e8935037fac6a99fba2bb449ae656dabb5fee7 (patch) | |
tree | a120aa0a5872758657e864b25682a47e1e4464a1 /gtk/gtkbitset.c | |
parent | 5f33f4ae8ed5582afb5aead418c9a51705f4a023 (diff) | |
download | gtk+-b9e8935037fac6a99fba2bb449ae656dabb5fee7.tar.gz |
docs: Document GtkBitsetIter
Diffstat (limited to 'gtk/gtkbitset.c')
-rw-r--r-- | gtk/gtkbitset.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/gtkbitset.c b/gtk/gtkbitset.c index 6f29e59757..b4d8abb113 100644 --- a/gtk/gtkbitset.c +++ b/gtk/gtkbitset.c @@ -27,20 +27,19 @@ * SECTION:gtkbitset * @title: GtkBitset * @short_description: Sets of integers - * @see_also: GtkSelectionModel + * @see_also: #GtkSelectionModel * * #GtkBitset is a data structure for representing a set of unsigned integers. * Another name for this data structure is "bitmap". * - * This version is based on [roaring bitmaps](https://roaringbitmap.org/). + * The current implemenation is based on [roaring bitmaps](https://roaringbitmap.org/). * * A bitset allows adding a set of integers and provides support for set operations * like unions, intersections and checks for equality or if a value is contained * in the set. #GtkBitset also contains various functions to query metadata about * the bitset, such as the minimum or maximum values or its size. * - * The fastest way to iterate values in a bitset is #GtkBitsetIter which allows - * quick iteration of all the values in a bitset. + * The fastest way to iterate values in a bitset is #GtkBitsetIter. * * The main use case for #GtkBitset is implementing complex selections for * #GtkSelectionModel. |