## binarytree-port.pkg
# Compiled by:
#
src/lib/test/unit-tests.libstipulate
include package threadkit; # threadkit is from
src/lib/src/lib/thread-kit/src/core-thread-kit/threadkit.pkgherein
package binarytree_port {
#
Binarytree_Port
=
{ get_subtree_sum: Void -> Int, # Use this from non-imp code, i.e. code which can afford to block.
pass_subtree_sum: Replyqueue -> (Int -> Void) -> Void, # Use this from imp code, which cannot afford to block.
set_state: Int -> Void
};
}; # api Binarytree_Ximp
end;