Author:halw

Date:2011-03-05T14:27:09.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@798 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
halw
2011-03-05 14:27:09 +00:00
parent f528a54761
commit 0c79a8c6c4
2 changed files with 12 additions and 13 deletions

View File

@@ -40,7 +40,7 @@ The baboons (modeled by class <code>BABOON</code>), when they are created are de
: 3) Traversing the canyon. Once on the rope, the baboon takes a short time to make it to the other side.
: 4) Dismounting the rope. After crossing the canyon, the baboon gets off the rope ... and apparently dies immediately after satisfying his only life's ambition.
: 4) Dismounting the rope. After crossing the canyon, the baboon gets off the rope ... and dies immediately after attaining what was apparently its only goal in life.

View File

@@ -2,20 +2,19 @@
[[Property:link_title|attribute_exists]]
[[Property:weight|-15]]
[[Property:uuid|7cdf93a7-6f63-869a-5443-b8908a086d18]]
==SYNOPSYS==
<code>
'''#include "eif_cecil.h"'''
==Overview==
<code lang="C">
#include "eif_cecil.h"
'''EIF_BOOLEAN attribute_exists (EIF_REFERENCE''' ''object'', '''char *''' ''name''''')''';</code>
EIF_BOOLEAN attribute_exists (EIF_REFERENCE object, char * name);
</code>
==DESCRIPTION==
The '''attribute_exists()''' macro returns '''EIF_TRUE''' or '''EIF_FALSE''' when the attribute of name ''name'' exists in the Eiffel object (reference) ''ref'' '''. '''
==RETURN VALUE==
'''EIF_TRUE''' or '''EIF_FALSE'''.
==CONFORMANCE==
==Description==
The <code lang="C">attribute_exists()</code> macro returns <code lang="C">EIF_TRUE</code> when the attribute of name <code lang="C">name</code> exists in the Eiffel object (reference) <code lang="C">object</code> .
==Return value==
<code lang="C">EIF_TRUE</code> or <code lang="C">EIF_FALSE</code>.
==Conformance==
ISE Eiffel 4.5 and later.
==SEE ALSO==
'''eif_attribute''' (1).
{{SeeAlso|<br/>[[Reference for `eif_attribute'.]] }}