instruction.sml

来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 39 行

SML
39
字号
(* instruction.sml * * COPYRIGHT (c) 1997 Bell Labs, Lucent Technologies. * * An AST representation of reactive scripts. *)structure Instruction =  struct    datatype 'a config      = posConfig of 'a      | negConfig of 'a      | orConfig of ('a config * 'a config)      | andConfig of ('a config * 'a config)    type signal = Atom.atom    datatype 'a instr      = || of ('a instr * 'a instr)      | & of ('a instr * 'a instr)      | nothing      | stop      | suspend      | action of 'a -> unit      | exec of 'a -> {stop : unit -> unit, done : unit -> bool}      | ifThenElse of (('a -> bool) * 'a instr * 'a instr)      | repeat of (int * 'a instr)      | loop of 'a instr      | close of 'a instr      | signal of (signal * 'a instr)      | rebind of (signal * signal * 'a instr)      | when of (signal config * 'a instr * 'a instr)      | trapWith of (signal config * 'a instr * 'a instr)      | emit of signal      | await of signal config  end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?