1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html>
<head>
<title> The (Super) Simple Type System </title>
</head>
<body>
<h1> The (Super) Simple Type System </h1>
<h2> Table of contents </h2>
<menu>
<li> <a href="./index.html">Index (You are here)</a> </li>
<li> <a href="./terminology.html"> Terminology </a> </li>
<li> <a href="./inheritance.html"> Inheritance </a> </li>
<menu> Object types:
<li> <a href="./object_types/SBaseObjectInstance.html">SBaseObjectInstance</a> </li>
<li> SError </li>
<li> SMap </li>
</menu>
</menu>
<h2>About</h2>
<p>
The (Super) Simple Type System is an experiment that was created my
Gustav Hartvigsson 2013. It was an attempt to create a simple
type system in C modelled after the GLib/GObject type system but with
the intent to be simpler.
</p>
<p>
Some of the fetures that the author thought were missing in GObject
a to_string method<sup><a href="#term">[*]</a></sup> in every object.
</p>
<footer style="padding-top: 10em">
<A name="term"><p> * See the <a href="./terminology.html"> terminology </a> page </p></A>
<!-- <A name="anchor"><p> * Note </p></A> -->
</footer>
</body>
</html>
|