You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
250 B

property HasNext
prefix "Iterator"
prefix "List"
start -> start: *
start -> invalid: I = iterator(*)
invalid -> valid: B = hasNext(i) if B != 0 // in SIL, "true" is encoded as "not 0"
valid -> invalid: next(i)
invalid -> error: next(i)