Is there a shorter way to write the if-then-else part below?

--
tryTakeSeat :: [Word8] -> Word8 -> ScriptState (Maybe Word8)
tryTakeSeat _ _ =
    do ...
       if (cmdType cmd) /= (CmdSitError Server)
          then return $ Just seat_num
          else return Nothing
--

        Thanks, Joel

--
http://wagerlabs.com/





_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to