-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Baptiste Thémine edited this page Jun 9, 2020
·
9 revisions
Welcome to the JLC wiki !
File | Description |
---|---|
array.h | Definition of fixed-size iterable container class. |
calendar.h | Utility for ISO 8601 date/time, period and interval manipulation. |
collection.h | Definition of variable-size iterable container class implemented as singly-linked node list. |
containers.h | Utility for container manipulation. |
debug.h | Utility for compiler diagnostics, feature tests, attributes, keywords and I/O manipulation. |
functions.h | Utility for generic algorithms, binary/hexa/octal numbers, character sequences, math, functors, iterators, operators, exceptions, and I/O manipulation. |
JLC.h | Includes JLC and required standard librairies. |
list.h | Definition of variable-size iterable container class extending Collection. |
map.h | Definition of associative container class extending Collection. |
queue.h | Definition of FIFO container class extending Collection. |
range.h | Definition of range-based iterable container class extending Collection. |
set.h | Definition of unique-constrained container class extending Collection. |
stack.h | Definition of LIFO container class extending Collection. |
stream.h | Definition of lazy-evaluable container class extending Collection. |
string.h | Definition of character sequence container class. |