fmap.h
Provides type definition for fmap functions, which allow computations on data within structures.
- Author: Edward Jones
- Date: 2021-09-17
Fmap
Type of a function which can be used in an fmap operation.
- Param
o
: The value outputted by the fmap - Param
i
: The unput value
typedef void (*Fmap)(void** o, void* i);