2012-04-24 04:41:09 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-set.hh"
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
|
2018-10-27 13:27:36 +02:00
|
|
|
/**
|
|
|
|
* SECTION:hb-set
|
2018-10-28 16:23:36 +01:00
|
|
|
* @title: hb-set
|
2019-04-21 21:30:36 +02:00
|
|
|
* @short_description: Objects representing a set of integers
|
2018-10-27 13:27:36 +02:00
|
|
|
* @include: hb.h
|
|
|
|
*
|
|
|
|
* Set objects represent a mathematical set of integer values. They are
|
2019-04-21 21:30:36 +02:00
|
|
|
* used in non-shaping APIs to query certain sets of characters or glyphs,
|
2018-10-27 13:27:36 +02:00
|
|
|
* or other integer values.
|
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
2013-09-12 23:14:33 +02:00
|
|
|
* hb_set_create: (Xconstructor)
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Creates a new, initially empty set.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): The new #hb_set_t
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_set_t *
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_set_create ()
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
|
|
|
hb_set_t *set;
|
|
|
|
|
|
|
|
if (!(set = hb_object_create<hb_set_t> ()))
|
2012-06-05 18:31:51 +02:00
|
|
|
return hb_set_get_empty ();
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2018-05-02 18:56:21 +02:00
|
|
|
set->init_shallow ();
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_get_empty:
|
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Fetches the singleton empty #hb_set_t.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): The empty #hb_set_t
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_set_t *
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_set_get_empty ()
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
return const_cast<hb_set_t *> (&Null (hb_set_t));
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_reference: (skip)
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
*
|
|
|
|
* Increases the reference count on a set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Return value: (transfer full): The set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_set_t *
|
|
|
|
hb_set_reference (hb_set_t *set)
|
|
|
|
{
|
|
|
|
return hb_object_reference (set);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_destroy: (skip)
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
*
|
|
|
|
* Decreases the reference count on a set. When
|
|
|
|
* the reference count reaches zero, the set is
|
|
|
|
* destroyed, freeing all memory.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
void
|
|
|
|
hb_set_destroy (hb_set_t *set)
|
|
|
|
{
|
|
|
|
if (!hb_object_destroy (set)) return;
|
|
|
|
|
2018-05-02 18:56:21 +02:00
|
|
|
set->fini_shallow ();
|
2012-04-25 06:14:46 +02:00
|
|
|
|
2012-04-24 04:41:09 +02:00
|
|
|
free (set);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_set_user_data: (skip)
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @key: The user-data key to set
|
|
|
|
* @data: A pointer to the user data to set
|
2020-12-24 21:38:06 +01:00
|
|
|
* @destroy: (optional): A callback to call when @data is not needed anymore
|
2019-04-21 21:30:36 +02:00
|
|
|
* @replace: Whether to replace an existing data with the same key
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Attaches a user-data key/data pair to the specified set.
|
|
|
|
*
|
2020-12-24 20:28:37 +01:00
|
|
|
* Return value: %true if success, %false otherwise
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_bool_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_set_user_data (hb_set_t *set,
|
|
|
|
hb_user_data_key_t *key,
|
|
|
|
void * data,
|
|
|
|
hb_destroy_func_t destroy,
|
|
|
|
hb_bool_t replace)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
|
|
|
return hb_object_set_user_data (set, key, data, destroy, replace);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_get_user_data: (skip)
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @key: The user-data key to query
|
|
|
|
*
|
|
|
|
* Fetches the user data associated with the specified key,
|
|
|
|
* attached to the specified set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Return value: (transfer none): A pointer to the user data
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
void *
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_get_user_data (hb_set_t *set,
|
|
|
|
hb_user_data_key_t *key)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
|
|
|
return hb_object_get_user_data (set, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_allocation_successful:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Tests whether memory allocation for a set was successful.
|
2020-04-20 11:42:45 +02:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if allocation succeeded, %false otherwise
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_bool_t
|
2018-04-23 16:33:57 +02:00
|
|
|
hb_set_allocation_successful (const hb_set_t *set)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2018-06-01 05:03:00 +02:00
|
|
|
return set->successful;
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_clear:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2020-04-20 11:42:45 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Clears out the contents of a set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
void
|
|
|
|
hb_set_clear (hb_set_t *set)
|
|
|
|
{
|
|
|
|
set->clear ();
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_is_empty:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Tests whether a set is empty (contains no elements).
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Return value: %true if @set is empty
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
hb_bool_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_is_empty (const hb_set_t *set)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2012-11-16 01:15:42 +01:00
|
|
|
return set->is_empty ();
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_has:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @codepoint: The element to query
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Tests whether @codepoint belongs to @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if @codepoint is in @set, %false otherwise
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_bool_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_has (const hb_set_t *set,
|
2012-04-24 04:41:09 +02:00
|
|
|
hb_codepoint_t codepoint)
|
|
|
|
{
|
|
|
|
return set->has (codepoint);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_add:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @codepoint: The element to add to @set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Adds @codepoint to @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
void
|
|
|
|
hb_set_add (hb_set_t *set,
|
|
|
|
hb_codepoint_t codepoint)
|
|
|
|
{
|
|
|
|
set->add (codepoint);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_add_range:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @first: The first element to add to @set
|
|
|
|
* @last: The final element to add to @set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Adds all of the elements from @first to @last
|
|
|
|
* (inclusive) to @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-11-16 01:15:42 +01:00
|
|
|
void
|
|
|
|
hb_set_add_range (hb_set_t *set,
|
|
|
|
hb_codepoint_t first,
|
|
|
|
hb_codepoint_t last)
|
|
|
|
{
|
|
|
|
set->add_range (first, last);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_del:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @codepoint: Removes @codepoint from @set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Removes @codepoint from @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 04:41:09 +02:00
|
|
|
void
|
|
|
|
hb_set_del (hb_set_t *set,
|
|
|
|
hb_codepoint_t codepoint)
|
|
|
|
{
|
|
|
|
set->del (codepoint);
|
|
|
|
}
|
2012-04-24 20:21:15 +02:00
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_del_range:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @first: The first element to remove from @set
|
|
|
|
* @last: The final element to remove from @set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Removes all of the elements from @first to @last
|
|
|
|
* (inclusive) from @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-11-16 01:15:42 +01:00
|
|
|
void
|
|
|
|
hb_set_del_range (hb_set_t *set,
|
|
|
|
hb_codepoint_t first,
|
|
|
|
hb_codepoint_t last)
|
|
|
|
{
|
|
|
|
set->del_range (first, last);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_is_equal:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2020-04-20 11:42:45 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Tests whether @set and @other are equal (contain the same
|
|
|
|
* elements).
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if the two sets are equal, %false otherwise.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
hb_bool_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_is_equal (const hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2012-11-16 01:15:42 +01:00
|
|
|
return set->is_equal (other);
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
|
|
|
|
2018-06-07 01:46:50 +02:00
|
|
|
/**
|
|
|
|
* hb_set_is_subset:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @larger_set: Another set
|
2018-06-07 01:46:50 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Tests whether @set is a subset of @larger_set.
|
2018-06-07 01:46:50 +02:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if the @set is a subset of (or equal to) @larger_set, %false otherwise.
|
2018-06-07 01:46:50 +02:00
|
|
|
*
|
|
|
|
* Since: 1.8.1
|
|
|
|
**/
|
|
|
|
hb_bool_t
|
|
|
|
hb_set_is_subset (const hb_set_t *set,
|
|
|
|
const hb_set_t *larger_set)
|
|
|
|
{
|
|
|
|
return set->is_subset (larger_set);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_set:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Makes the contents of @set equal to the contents of @other.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
void
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_set (hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
set->set (other);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_union:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Makes @set the union of @set and @other.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
void
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_union (hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
set->union_ (other);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_intersect:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Makes @set the intersection of @set and @other.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
void
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_intersect (hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
set->intersect (other);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_subtract:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Subtracts the contents of @other from @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
void
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_subtract (hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
set->subtract (other);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_symmetric_difference:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @other: Another set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Makes @set the symmetric difference of @set
|
|
|
|
* and @other.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-05-25 19:48:00 +02:00
|
|
|
void
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_symmetric_difference (hb_set_t *set,
|
|
|
|
const hb_set_t *other)
|
2012-05-25 19:48:00 +02:00
|
|
|
{
|
|
|
|
set->symmetric_difference (other);
|
|
|
|
}
|
|
|
|
|
2019-05-11 09:37:01 +02:00
|
|
|
#ifndef HB_DISABLE_DEPRECATED
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_invert:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2020-04-20 11:42:45 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Inverts the contents of @set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.10
|
2017-10-15 16:15:24 +02:00
|
|
|
*
|
|
|
|
* Deprecated: 1.6.1
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2013-01-03 05:50:36 +01:00
|
|
|
void
|
2018-10-27 06:01:11 +02:00
|
|
|
hb_set_invert (hb_set_t *set HB_UNUSED)
|
2013-01-03 05:50:36 +01:00
|
|
|
{
|
|
|
|
}
|
2019-05-11 09:37:01 +02:00
|
|
|
#endif
|
2013-01-03 05:50:36 +01:00
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_get_population:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Returns the number of elements in the set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Return value: The population of @set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-11-16 01:15:42 +01:00
|
|
|
unsigned int
|
2012-11-21 07:14:19 +01:00
|
|
|
hb_set_get_population (const hb_set_t *set)
|
2012-11-16 01:15:42 +01:00
|
|
|
{
|
|
|
|
return set->get_population ();
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_get_min:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Finds the smallest element in the set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Return value: minimum of @set, or #HB_SET_VALUE_INVALID if @set is empty.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
hb_codepoint_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_get_min (const hb_set_t *set)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2012-05-18 02:55:12 +02:00
|
|
|
return set->get_min ();
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_get_max:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Finds the largest element in the set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Return value: maximum of @set, or #HB_SET_VALUE_INVALID if @set is empty.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-04-24 20:21:15 +02:00
|
|
|
hb_codepoint_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_get_max (const hb_set_t *set)
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
2012-05-18 02:55:12 +02:00
|
|
|
return set->get_max ();
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-05-25 20:17:54 +02:00
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_next:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @codepoint: (inout): Input = Code point to query
|
|
|
|
* Output = Code point retrieved
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Fetches the next element in @set that is greater than current value of @codepoint.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Set @codepoint to #HB_SET_VALUE_INVALID to get started.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if there was a next value, %false otherwise
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-05-25 20:17:54 +02:00
|
|
|
hb_bool_t
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_set_next (const hb_set_t *set,
|
2012-05-25 20:17:54 +02:00
|
|
|
hb_codepoint_t *codepoint)
|
|
|
|
{
|
|
|
|
return set->next (codepoint);
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
|
2018-02-14 10:00:10 +01:00
|
|
|
/**
|
|
|
|
* hb_set_previous:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @codepoint: (inout): Input = Code point to query
|
|
|
|
* Output = Code point retrieved
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Fetches the previous element in @set that is lower than current value of @codepoint.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Set @codepoint to #HB_SET_VALUE_INVALID to get started.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if there was a previous value, %false otherwise
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
hb_bool_t
|
|
|
|
hb_set_previous (const hb_set_t *set,
|
|
|
|
hb_codepoint_t *codepoint)
|
|
|
|
{
|
|
|
|
return set->previous (codepoint);
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:29:22 +02:00
|
|
|
/**
|
|
|
|
* hb_set_next_range:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @first: (out): The first code point in the range
|
|
|
|
* @last: (inout): Input = The current last code point in the range
|
|
|
|
* Output = The last code point in the range
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Fetches the next consecutive range of elements in @set that
|
2013-09-06 21:29:22 +02:00
|
|
|
* are greater than current value of @last.
|
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Set @last to #HB_SET_VALUE_INVALID to get started.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if there was a next range, %false otherwise
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.7
|
2013-09-06 21:29:22 +02:00
|
|
|
**/
|
2012-11-16 01:15:42 +01:00
|
|
|
hb_bool_t
|
|
|
|
hb_set_next_range (const hb_set_t *set,
|
|
|
|
hb_codepoint_t *first,
|
|
|
|
hb_codepoint_t *last)
|
|
|
|
{
|
|
|
|
return set->next_range (first, last);
|
|
|
|
}
|
2018-02-14 10:00:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_set_previous_range:
|
2019-04-21 21:30:36 +02:00
|
|
|
* @set: A set
|
|
|
|
* @first: (inout): Input = The current first code point in the range
|
|
|
|
* Output = The first code point in the range
|
|
|
|
* @last: (out): The last code point in the range
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2019-04-21 21:30:36 +02:00
|
|
|
* Fetches the previous consecutive range of elements in @set that
|
|
|
|
* are greater than current value of @last.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:09:59 +01:00
|
|
|
* Set @first to #HB_SET_VALUE_INVALID to get started.
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
2020-12-30 22:08:40 +01:00
|
|
|
* Return value: %true if there was a previous range, %false otherwise
|
2018-02-14 10:00:10 +01:00
|
|
|
*
|
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
hb_bool_t
|
|
|
|
hb_set_previous_range (const hb_set_t *set,
|
|
|
|
hb_codepoint_t *first,
|
|
|
|
hb_codepoint_t *last)
|
|
|
|
{
|
|
|
|
return set->previous_range (first, last);
|
|
|
|
}
|