Singly-linked list/Element definition: Difference between revisions

Line 314:
datatype rclist_t (t : t@ype+, n : int) =
| rclist_t_nil (t, 0)
| {0 <= n} rclist_t_cons (t, n + 1) of (t, rclist_t (t, n))
 
(* The Rosetta Code linear list type can contain any vt@ype and so is
Line 320:
dataviewtype rclist_vt (vt : vt@ype+, n : int) =
| rclist_vt_nil (vt, 0)
| {0 <= n} rclist_vt_cons (vt, n + 1) of (vt, rclist_vt (vt, n))</lang>
 
=={{header|AutoHotkey}}==
1,448

edits