about summary refs log tree commit diff stats
path: root/024compare.cc
Commit message (Expand)AuthorAgeFilesLines
* 1962Kartik K. Agaram2015-08-091-12/+12
* 1923Kartik K. Agaram2015-08-021-5/+5
* 1886 - gracefully handle malformed ingredientsKartik K. Agaram2015-07-291-5/+5
* 1868 - start using naked literals everywhereKartik K. Agaram2015-07-281-34/+34
* 1848 - core instructions now check for ingredientsKartik K. Agaram2015-07-251-4/+40
* 1702 - experiment: start using 'ordinal' in namesKartik K. Agaram2015-07-041-5/+5
* 1414 - traces now robust to new recipes/typesKartik K. Agaram2015-05-211-68/+0
* 1391 - avoid unsigned integersKartik K. Agaram2015-05-171-13/+13
* 1363 - rename 'integer' to 'number'Kartik K. Agaram2015-05-131-46/+46
* 1360 - store doubles in memoryKartik K. Agaram2015-05-121-1/+1
* 1357 - temporarily revert floating-point supportKartik K. Agaram2015-05-121-20/+10
* 1356 - snapshot #2: floating point supportKartik K. Agaram2015-05-121-10/+20
* 1298 - better ingredient/product handlingKartik K. Agaram2015-05-071-60/+126
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+262
#dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# new type to help incrementally read strings
container stream [
  index:number
  data:address:array:character
]

recipe new-stream [
  local-scope
  result:address:stream <- new stream:type
  i:address:number <- get-address *result, index:offset
  *i <- copy 0
  d:address:address:array:character <- get-address *result, data:offset
  *d <- next-ingredient
  reply result
]

recipe rewind-stream [
  local-scope
  in:address:stream <- next-ingredient
  x:address:number <- get-address *in, index:offset
  *x <- copy 0
  reply in/same-as-arg:0
]

recipe read-line [
  local-scope
  in:address:stream <- next-ingredient
  idx:address:number <- get-address *in, index:offset
  s:address:array:character <- get *in, data:offset
  next-idx:number <- find-next s, 10/newline, *idx
  result:address:array:character <- string-copy s, *idx, next-idx
  *idx <- add next-idx, 1  # skip newline
  reply result
]

recipe end-of-stream? [
  local-scope
  in:address:stream <- next-ingredient
  idx:address:number <- get *in, index:offset
  s:address:array:character <- get *in, data:offset
  len:number <- length *s
  result:boolean <- greater-or-equal idx, len
  reply result
]