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
|
2018-10-27 13:27:36 +02:00
|
|
|
* @short_description: Object representing a set of integers
|
|
|
|
* @include: hb.h
|
|
|
|
*
|
|
|
|
* Set objects represent a mathematical set of integer values. They are
|
|
|
|
* used in non-shaping API to query certain set of characters or glyphs,
|
|
|
|
* 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
|
|
|
*
|
|
|
|
* Return value: (transfer full):
|
|
|
|
*
|
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:
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: (transfer full):
|
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
|
|
|
{
|
2018-06-01 05:20:17 +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)
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full):
|
|
|
|
*
|
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)
|
|
|
|
* @set: a set.
|
|
|
|
*
|
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)
|
|
|
|
* @set: a set.
|
|
|
|
* @key:
|
|
|
|
* @data:
|
2017-01-23 02:42:33 +01:00
|
|
|
* @destroy:
|
2013-09-06 21:29:22 +02:00
|
|
|
* @replace:
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
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)
|
|
|
|
* @set: a set.
|
|
|
|
* @key:
|
|
|
|
*
|
|
|
|
* Return value: (transfer none):
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @codepoint:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @codepoint:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @first:
|
|
|
|
* @last:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @codepoint:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @first:
|
|
|
|
* @last:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
2018-06-07 01:46:50 +02:00
|
|
|
* @other: other set.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
2018-06-07 01:46:50 +02: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:
|
|
|
|
* @set: a set.
|
|
|
|
* @larger_set: other set.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the @set is a subset of (or equal to) @larger_set, %FALSE otherwise.
|
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
* @set: a set.
|
|
|
|
* @other:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @other:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @other:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @other:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @other:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
* Returns the number of numbers in the set.
|
|
|
|
*
|
|
|
|
* Return value: set population.
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
* Finds the minimum number in the set.
|
|
|
|
*
|
|
|
|
* Return value: minimum of the set, or %HB_SET_VALUE_INVALID if set is empty.
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
*
|
|
|
|
* Finds the maximum number in the set.
|
|
|
|
*
|
|
|
|
* Return value: minimum of the set, or %HB_SET_VALUE_INVALID if set is empty.
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @codepoint: (inout):
|
|
|
|
*
|
2018-02-14 10:00:10 +01:00
|
|
|
* Gets the next number in @set that is greater than current value of @codepoint.
|
|
|
|
*
|
|
|
|
* Set @codepoint to %HB_SET_VALUE_INVALID to get started.
|
2013-09-06 21:29:22 +02:00
|
|
|
*
|
|
|
|
* Return value: whether there was a next value.
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @codepoint: (inout):
|
|
|
|
*
|
|
|
|
* Gets the previous number in @set that is slower than current value of @codepoint.
|
|
|
|
*
|
|
|
|
* Set @codepoint to %HB_SET_VALUE_INVALID to get started.
|
|
|
|
*
|
|
|
|
* Return value: whether there was a previous value.
|
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
* @set: a set.
|
|
|
|
* @first: (out): output first codepoint in the range.
|
|
|
|
* @last: (inout): input current last and output last codepoint in the range.
|
|
|
|
*
|
|
|
|
* Gets the next consecutive range of numbers in @set that
|
|
|
|
* are greater than current value of @last.
|
|
|
|
*
|
2018-02-14 10:00:10 +01:00
|
|
|
* Set @last to %HB_SET_VALUE_INVALID to get started.
|
|
|
|
*
|
2013-09-06 21:29:22 +02:00
|
|
|
* Return value: whether there was a next range.
|
|
|
|
*
|
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:
|
|
|
|
* @set: a set.
|
|
|
|
* @first: (inout): input current first and output first codepoint in the range.
|
|
|
|
* @last: (out): output last codepoint in the range.
|
|
|
|
*
|
|
|
|
* Gets the previous consecutive range of numbers in @set that
|
|
|
|
* are greater than current value of @last.
|
|
|
|
*
|
|
|
|
* Set @first to %HB_SET_VALUE_INVALID to get started.
|
|
|
|
*
|
|
|
|
* Return value: whether there was a previous range.
|
|
|
|
*
|
|
|
|
* 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);
|
|
|
|
}
|