view Paper/src/TreeCopy.h @ 88:8c1735151e2a default tip

...
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Wed, 28 Feb 2024 15:39:29 +0900
parents 9baf70df56fa
children
line wrap: on
line source

typedef struct Tree<> {
  union Data* tree;
  struct Node* node;
  __code put(Impl* tree, Type* node, __code next(...));
  __code get(Impl* tree, Type* node, __code next(...));
  __code remove(Impl* tree, Type* node, __code next(...));
  __code copy(Impl* tree, __code next(...));
  __code next(...);
} Tree;