我正在尝试使用 Development.Shake.FilePattern 中定义的提取功能,但它已被隐藏。为什么?它不是我内心使用的。
$ ghci
GHCi, version 7.6.3: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> import Development.Shake.FilePattern
<no location info>:
Could not find module `Development.Shake.FilePattern'
it is a hidden module in the package `shake-0.15.10'
Prelude>
提取会非常方便。目前我不得不求助于自定义字符串操作。
答案 0 :(得分:1)
extract
来实现用户可见的&%>
函数。
Shake故意试图避免泄漏内部实现细节 - 例如它包含一个线程池实现,它保持安静。也就是说,FilePattern
显然很有用,所以:
filePattern
,它执行上面要求的操作。FilePattern
功能已发布为the filepattern
library,Shake将使用该功能实现其所有功能。