0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-08 21:18:57 +02:00
construct/include/ircd/util
2018-09-01 21:04:34 -07:00
..
bswap.h ircd::util: Add specific endian bswaps e.g arpa/inet.h; minor cleanup. 2018-07-01 16:39:43 -07:00
enum.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
instance_list.h ircd::util: Fix instance_list noexcept specification for move semantics. 2018-09-01 20:45:04 -07:00
instance_multimap.h ircd::util: Add instance_multimap. 2018-09-01 21:04:34 -07:00
iterator.h ircd::util: Split various from util.h 2018-04-24 17:01:11 -07:00
life_guard.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
nothrow.h ircd::util: Split various from util.h 2018-04-24 17:01:11 -07:00
params.h ircd::util: Add suite to util::params for fetch-by-name. 2018-08-15 23:00:42 -07:00
pointers.h ircd::util: Add output iterator bounded pointers transform. 2018-05-08 14:28:43 -07:00
pubsetbuf.h ircd::util: Split various from util.h 2018-04-24 17:01:11 -07:00
README.md ircd::util: Add README blerb to directory. 2018-08-17 12:51:48 -07:00
reentrance.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
string.h ircd::util: Split various from util.h 2018-04-24 17:01:11 -07:00
syscall.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
timer.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
tuple.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
typography.h ircd::util: Fix conditions for is_zero template test. 2018-04-11 23:40:30 -07:00
unique_iterator.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
unit_literal.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
unwind.h ircd::util: Add unwind utils that assert whether exception is taking place. 2018-03-14 20:23:54 -07:00
util.h ircd::util: Add instance_multimap. 2018-09-01 21:04:34 -07:00
va_rtti.h ircd::util: Static assertion of va_rtti argument count. 2018-03-22 13:31:58 -07:00
what.h ircd::util: Split what(); use default param of std::current_exception(). 2018-05-07 19:20:59 -07:00

Utility toolchest

This namespace contains an accumulated collection of miscellaneous classes and functions which have demonstrated value some place in the project, but are not really specific to the project's application. While most of libircd is arguably a utility suite itself (i.e tokens.h and lex_cast.h and base.h which are not within ircd::util) the contents of this namespace tend to be even more abstract, and serve as utilities to the utilities, etc. This collection is here to save developers time and enforce DRY.

These tools still rank below ircd::exception, *_view, buffer:: and allocator:: and can still make use of those considering the linear inclusion strategy of the project (see: ircd.h).