文件名称:optparse-th:当你真的不想写任何选项解析代码时
文件大小:12KB
文件格式:ZIP
更新时间:2024-06-21 10:04:01
Haskell
optparse-applicative模板 没有我想使用的选项库之类的东西。 我想编写的唯一选项解析代码根本没有! (ノಠ益ಠ)ノ彡┻━┻ 这个库应该涵盖我个人最常遇到的选项解析的基本情况: thing有些ARGS thing命令参数 thing命令 thing args 命令 args ... 你明白了。 (呃,请参阅Opt TH.hs了解实际想法。) 一个例子: data Action = CmdPing | CmdPong $(genOpts ''Action) main = do x <- execParser optparseAction case x of CmdPing -> putStrLn "ping!" CmdPong -> putStrLn "pong!" 有关更多信息,请查看test/cases 。 去做 帮助文本:来自 Hadd
【文件预览】:
optparse-th-master
----test.hs(528B)
----optparse-th.cabal(732B)
----test()
--------cases()
--------driver.hs(2KB)
----LICENSE(1KB)
----Setup.hs(46B)
----README.md(851B)
----Options()
--------Applicative()