


## uid.api
# Compiled by:
# src/lib/c-kit/src/ast/ast.sublib# UID = "Unique IDentifiers"
api Uid {
Uid = Int;
initial: Uid;
new: Void -> Uid;
reset: Int -> Void;
equal: (Uid, Uid) -> Bool;
compare: (Uid, Uid) -> Order;
to_unt: Uid -> unt::Unt;
to_string: Uid -> String;
};
## Copyright (c) 1998 by Lucent Technologies
## Subsequent changes by Jeff Prothero Copyright (c) 2010-2011,
## released under Gnu Public Licence version 3.


