ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
Last change
on this file since a6dd5b0 was 3dcd347a, checked in by Thierry Delisle <tdelisle@…>, 9 years ago |
moved some more tests to new test folder
|
-
Property mode
set to
100644
|
File size:
288 bytes
|
Rev | Line | |
---|
[6e3ae00] | 1 | #include "avl.h"
|
---|
| 2 |
|
---|
| 3 | forall(otype T | Comparable(T))
|
---|
| 4 | int ?==?(T t1, T t2) {
|
---|
| 5 | return !(t1 < t2) && !(t2 < t1);
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 | forall(otype T | Comparable(T))
|
---|
| 9 | int ?>?(T t1, T t2) {
|
---|
| 10 | return t2 < t1;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | forall(dtype T | { void ^?{}(T *); })
|
---|
| 14 | void delete(T * x) {
|
---|
| 15 | if (x) {
|
---|
| 16 | ^?{}(x);
|
---|
| 17 | free(x);
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.