view Paper/src/FTree.h @ 46:9baf70df56fa

copy algo
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Mon, 29 Jan 2024 13:41:22 +0900
parents 83b783747d1a
children
line wrap: on
line source

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