type
type — The classification of a value.
Synopsis
type ::= × ⏵
- Zero or more of:
- text
replaceable
- Graphic inlines ⏵
- Indexing inlines ⏵
- Linking inlines ⏵
- Object-oriented programming inlines ⏵
- Programming inlines ⏵
- Ubiquitous inlines ⏵
Attributes
Common attributes and common linking attributes.
Additional attributes:
- class (enumeration)
- “union”
- “intersection”
Description
In general usage, type
identifies one member of
a class of values.
In documenting computer programs, it identifies specifically a
type,
as might be declared with
typedef
in the C programming language.
Processing expectations
Formatted inline.
Attributes
Common attributes and common linking attributes.
- any attribute
Any attribute in any other explicit namespace
- class
Specifies the way how are nested types combined together
Enumerated values: “union” Combined type is union of nested types
“intersection” Combined type is intersection of nested types
Parents
64 elements contain type
. × ⏵
Children
51 elements occur in type
. × ⏵
See Also
Examples
1 |<article xmlns='http://docbook.org/ns/docbook'>
|<title>Example type</title>
||
<para>The <function>geteuid</function> function returns a <type>uid_t</type> that
5 |contains the user's <emphasis>effective</emphasis> user id.
|</para>
||
</article>
The geteuid
function returns a uid_t
that
contains the user's effective user id.