polar-objc 5.44
An Objective-C runtime library
Loading...
Searching...
No Matches
polar-hash-table-node-pointer-key.h
1/* Internal API: basic hash table node with pointer-derived sort key for polar-objc.
2 Copyright (C) 2022-2025 Michael Malicoat <[email protected]>
3
4 This file is part of polar-objc.
5
6 polar-objc is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
8
9 polar-objc is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
10 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 details.
12
13 You should have received a copy of the GNU General Public License along with this program; see the file LICENSE. If
14 not, see <http://www.gnu.org/licenses/>.
15*/
16
17#ifndef POLAR_HASH_TABLE_NODE_POINTER_KEY_H
18#define POLAR_HASH_TABLE_NODE_POINTER_KEY_H
19// polar_hash_table_node_pointer_key ***********************************************************************************
20
23
28
33
34#define POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY ( polar_hash_table_node_pointer_key_get_type() )
35
36#define POLAR_HASH_TABLE_NODE_POINTER_KEY(inst) ( POLAR_INTERNAL_TYPE_CHECK_INSTANCE_CAST((inst), POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY, polar_hash_table_node_pointer_key) )
37#define IS_POLAR_HASH_TABLE_NODE_POINTER_KEY(inst) ( POLAR_INTERNAL_TYPE_CHECK_INSTANCE_TYPE((inst), POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY) )
38#define POLAR_HASH_TABLE_NODE_POINTER_KEY_CLASS(klass) ( POLAR_INTERNAL_TYPE_CHECK_CLASS_CAST((klass), POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY, polar_hash_table_node_pointer_key_class) )
39#define IS_POLAR_HASH_TABLE_NODE_POINTER_KEY_CLASS(klass) ( POLAR_INTERNAL_TYPE_CHECK_CLASS_TYPE((klass), POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY) )
40#define POLAR_HASH_TABLE_NODE_POINTER_KEY_GET_CLASS(inst) ( POLAR_INTERNAL_TYPE_INSTANCE_GET_CLASS((inst), POLAR_TYPE_HASH_TABLE_NODE_POINTER_KEY, polar_hash_table_node_pointer_key_class) )
41
42POLAR_FUNCTION_INTERNAL OBJC_FUNCTION_CONSTANT polar_internal_type
43polar_hash_table_node_pointer_key_get_type( void );
44
45#endif // POLAR_HASH_TABLE_NODE_POINTER_KEY_H
Definition polar-hash-table-node.h:31
Definition polar-hash-table-node-pointer-key.h:30
Definition polar-hash-table-node-pointer-key.h:25
Definition polar-hash-table-node.h:25