enum BlockType { case Header case Text case ... } enum ScanState { case EmptyLine case Block(type: BlockType) }. In one of my methods, I switch on ScanState ...
確定! 回上一頁