mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
72 lines
1.1 KiB
C
72 lines
1.1 KiB
C
#ifndef GU_FUN_H_
|
|
#define GU_FUN_H_
|
|
|
|
#include <gu/defs.h>
|
|
|
|
typedef void (*GuFn)();
|
|
typedef void (*GuFn0)(GuFn* clo);
|
|
typedef void (*GuFn1)(GuFn* clo, void* arg1);
|
|
typedef void (*GuFn2)(GuFn* clo, void* arg1, void* arg2);
|
|
|
|
#define gu_fn(fn_) (&(GuFn){ fn_ })
|
|
|
|
static inline void
|
|
gu_apply0(GuFn* fn) {
|
|
((GuFn0)(*fn))(fn);
|
|
}
|
|
|
|
static inline void
|
|
gu_apply1(GuFn* fn, void* arg1) {
|
|
((GuFn1)(*fn))(fn, arg1);
|
|
}
|
|
|
|
static inline void
|
|
gu_apply2(GuFn* fn, void* arg1, void* arg2) {
|
|
((GuFn2)(*fn))(fn, arg1, arg2);
|
|
}
|
|
|
|
#define gu_apply(fn_, ...) \
|
|
((fn_)->fn((fn_), __VA_ARGS__))
|
|
|
|
typedef struct GuClo0 GuClo0;
|
|
|
|
struct GuClo0 {
|
|
GuFn fn;
|
|
};
|
|
|
|
typedef struct GuClo1 GuClo1;
|
|
|
|
struct GuClo1 {
|
|
GuFn fn;
|
|
void *env1;
|
|
};
|
|
|
|
typedef struct GuClo2 GuClo2;
|
|
struct GuClo2 {
|
|
GuFn fn;
|
|
void *env1;
|
|
void *env2;
|
|
};
|
|
|
|
typedef struct GuClo3 GuClo3;
|
|
struct GuClo3 {
|
|
GuFn fn;
|
|
void *env1;
|
|
void *env2;
|
|
void *env3;
|
|
};
|
|
|
|
typedef const struct GuEquality GuEquality;
|
|
|
|
struct GuEquality {
|
|
bool (*is_equal)(GuEquality* self, const void* a, const void* b);
|
|
};
|
|
|
|
typedef const struct GuOrder GuOrder;
|
|
|
|
struct GuOrder {
|
|
int (*compare)(GuOrder* self, const void* a, const void* b);
|
|
};
|
|
|
|
#endif // GU_FUN_H_
|