about summary refs log tree commit diff stats
path: root/html/022div.cc.html
Commit message (Expand)AuthorAgeFilesLines
* 5490Kartik Agaram2019-07-271-6/+6
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+100
opes' href='/akkartik/mu/commit/063list.mu?h=hlt&id=77d5b5d658830bd24724f945e0d6ddf6a06adc0e'>77d5b5d6 ^
87ef6a67 ^


502d2ea5 ^




87ef6a67 ^



77d5b5d6 ^
87ef6a67 ^
502d2ea5 ^

87ef6a67 ^



77d5b5d6 ^
87ef6a67 ^
502d2ea5 ^

87ef6a67 ^




bc643692 ^



87ef6a67 ^













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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60




                                                                                   






                                                         
             


                                      




                                                               



                                          
             
                                    

                                          



                                             
             
                                    

                                             




                          



                                            













                                            
# A list links up multiple objects together to make them easier to manage.
#
# Try to make all objects in a single list of the same type, it'll help avoid bugs.
# If you want to store multiple types in a single list, use an exclusive-container.

container list [
  value:location
  next:address:list
]

# result:address:list <- push x:location, in:address:list
recipe push [
  local-scope
  x:location <- next-ingredient
  in:address:list <- next-ingredient
  result:address:list <- new list:type
  val:address:location <- get-address *result, value:offset
  *val <- copy x
  next:address:address:list <- get-address *result, next:offset
  *next <- copy in
  reply result
]

# result:location <- first in:address:list
recipe first [
  local-scope
  in:address:list <- next-ingredient
  result:location <- get *in, value:offset
  reply result
]

# result:address:list <- rest in:address:list
recipe rest [
  local-scope
  in:address:list <- next-ingredient
  result:address:list <- get *in, next:offset
  reply result
]

scenario list-handling [
  run [
#?     $start-tracing #? 1
    1:address:list <- copy 0
    1:address:list <- push 3, 1:address:list
    1:address:list <- push 4, 1:address:list
    1:address:list <- push 5, 1:address:list
    2:number <- first 1:address:list
    1:address:list <- rest 1:address:list
    3:number <- first 1:address:list
    1:address:list <- rest 1:address:list
    4:number <- first 1:address:list
    1:address:list <- rest 1:address:list
  ]
  memory-should-contain [
    1 <- 0  # empty to empty, dust to dust..
    2 <- 5
    3 <- 4
    4 <- 3
  ]
]