summaryrefslogtreecommitdiff
path: root/MLKCons.h
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-08-31 10:57:21 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-08-31 10:57:21 +0200
commit15e2f2443fa6ee9b3b4a78752ecafcc0722c7511 (patch)
tree30eadd91073605a144ee74d7a2494de732afb7f3 /MLKCons.h
parent959c47aa115e4ee30602cac44cb0a05488bdcc01 (diff)
Documentation: Add sections.
Diffstat (limited to 'MLKCons.h')
-rw-r--r--MLKCons.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/MLKCons.h b/MLKCons.h
index 8a79a99..32c346c 100644
--- a/MLKCons.h
+++ b/MLKCons.h
@@ -38,6 +38,8 @@
id _cdr;
}
+/*** Section: Creating and Initialising Conses ***/
+
/* Method: +cons:with:
Cons two objects together.
@@ -51,7 +53,6 @@
*/
+(MLKCons*) cons:(id)car with:(id)cdr;
-
/* Method: +listWithArray:
Make a linked list of cons cells out of an array. */
@@ -70,6 +71,9 @@
*/
-(MLKCons*) initWithCar:(id)car cdr:(id)cdr;
+
+/*** Section: Accessing Components ***/
+
/* Method: -car
The car of the cons cell.
@@ -106,6 +110,9 @@
*/
-(void) setCdr:(id)value;
+
+/*** Section: Converting to Other Container Types ***/
+
/* Method: -array
Return the content of the linked list represented by this cons cell as an array.