aboutsummaryrefslogtreecommitdiff
path: root/include/lib/monad.h
blob: 21cbe61b2dfc82f7dd75eb51645e6c16bacea492 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef INC_LIB_MONAD_H
#define INC_LIB_MONAD_H

#include <lib/bool.h>

typedef struct Result {
  void *data;
  bool_t success;
} Result;

#endif