]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
MdePkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / MdePkg / Library / BaseOrderedCollectionRedBlackTreeLib / BaseOrderedCollectionRedBlackTreeLib.inf
1 ## @file
2 # An OrderedCollectionLib instance that provides a red-black tree
3 # implementation, and allocates and releases tree nodes with
4 # MemoryAllocationLib.
5 #
6 # This library instance is useful when a fast associative container is needed.
7 # Worst case time complexity is O(log n) for Find(), Next(), Prev(), Min(),
8 # Max(), Insert(), and Delete(), where "n" is the number of elements in the
9 # tree. Complete ordered traversal takes O(n) time.
10 #
11 # The implementation is also useful as a fast priority queue.
12 #
13 # Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
14 # Copyright (C) 2014, Red Hat, Inc.
15 #
16 # This program and the accompanying materials are licensed and made available
17 # under the terms and conditions of the BSD License that accompanies this
18 # distribution. The full text of the license may be found at
19 # http://opensource.org/licenses/bsd-license.php.
20 #
21 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
22 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR
23 # IMPLIED.
24 #
25 ##
26
27 [Defines]
28 INF_VERSION = 0x00010005
29 BASE_NAME = BaseOrderedCollectionRedBlackTreeLib
30 MODULE_UNI_FILE = BaseOrderedCollectionRedBlackTreeLib.uni
31 FILE_GUID = 699F73C3-0058-484C-A9E5-61189276A985
32 MODULE_TYPE = BASE
33 VERSION_STRING = 1.0
34 LIBRARY_CLASS = OrderedCollectionLib
35
36 #
37 # VALID_ARCHITECTURES = IA32 X64 EBC
38 #
39
40 [Sources]
41 BaseOrderedCollectionRedBlackTreeLib.c
42
43 [Packages]
44 MdePkg/MdePkg.dec
45
46 [LibraryClasses]
47 DebugLib
48 MemoryAllocationLib
49
50 [FeaturePcd]
51 gEfiMdePkgTokenSpaceGuid.PcdValidateOrderedCollection ## CONSUMES