Mercurial > hg > Papers > 2018 > ryokka-sigos
view Paper/src/interface.cbc @ 1:bf2887cd22c1
fix Paper
author | ryokka |
---|---|
date | Fri, 13 Apr 2018 19:47:50 +0900 |
parents | |
children |
line wrap: on
line source
typedef struct Stack<Type, Impl>{ union Data* stack; union Data* data; union Data* data1; __code whenEmpty(...); __code clear(Impl* stack,__code next(...)); __code push(Impl* stack,Type* data, __code next(...)); __code pop(Impl* stack, __code next(Type* data, ...)); __code get(Impl* stack, __code next(Type* data, ...)); __code next(...); } Stack;