|
From: Vitor S. C. <vs...@us...> - 2008-06-16 21:22:11
|
Update of /cvsroot/yap/docs In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19140/docs Modified Files: yap.tex Log Message: fix stack growth in globals fix compilation messages Index: yap.tex =================================================================== RCS file: /cvsroot/yap/docs/yap.tex,v retrieving revision 1.253 retrieving revision 1.254 diff -u -r1.253 -r1.254 --- yap.tex 7 Jun 2008 10:11:43 -0000 1.253 +++ yap.tex 16 Jun 2008 21:22:14 -0000 1.254 @@ -7072,6 +7072,12 @@ integer. The @var{Type} must be bound to one of types mentioned previously. +@item reset_static_array(+@var{Name}) +@findex reset_static_array/1 +@snindex reset_static_array/1 +@cnindex reset_static_array/1 +Reset static array with name @var{Name} to its initial value. + @item static_array_location(+@var{Name}, -@var{Ptr}) @findex static_array_location/4 @snindex static_array_location/4 @@ -9684,6 +9690,12 @@ @var{T0} creating a new red-black tree @var{TF}. Duplicated elements are not allowed. +@snindex rb_insert_new/4 +@cnindex rb_insert_new/4 +Add a new element with key @var{Key} and @var{Value} to the tree +@var{T0} creating a new red-black tree @var{TF}. Fails is an element +with @var{Key} exists in the tree. + @item rb_lookup(+@var{Key},-@var{Value},+@var{T}) @findex rb_lookup/3 @snindex rb_lookup/3 |