标签: haskell functional-programming
我正在使用mysql-haskell包。查询结果的类型为IO [[MySQLValue]]。
现在访问下面代码中的第三行值将打印出" MySQLInt16U 5" :
test2 (x:xs) = show $ x!!2
我如何"转换"那些MySQLValues到整数,字符串或其他本机类型(在这种情况下,类型应该是Int)?
编辑:link reference for decoding types