aboutsummaryrefslogtreecommitdiff
path: root/include/lib/monad.h
blob: 74db079b29f061ade4c6c3ee5c6f7772abe74179 (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>

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

#endif