view src/Tree.h @ 590:9146d6017f18 default tip

hg mv parallel_execution/* ..
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 16 Jan 2020 15:12:06 +0900
parents src/parallel_execution/Tree.h@4b5f9884b777
children
line wrap: on
line source

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