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

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

#endif