docs/Writerside/topics/utils.md

Fri, 23 May 2025 13:36:11 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 23 May 2025 13:36:11 +0200
changeset 1328
2cf66dee40b8
parent 1166
03bbdf402675
permissions
-rw-r--r--

stabilizes mempool implementation

resolves #676
fixes #677
fixes #678

# Utilities

Useful functions that are not specifically tied to a certain topic or domain are called Utilities.
The most useful of which are the predefined [compare functions](compare.h.md) for various primitive types.

The [hash functions](hash_key.h.md) are usually of lesser interest unless you are using [hash maps](hash_map.h.md),
but they can be also used independently of the hash map context.

When you are working with [data streams](streams.h.md), e.g. `FILE` streams
or any other stream (or buffer) API that uses an `fwrite`-compatible interface,
you will find the stream copy function quite useful.

And last, but not least, if you are interested in unit testing, but don't know which testing framework to use:
search no more, because we have got your back with [UCX Test](test.h.md).

mercurial