Haskell : display/get list of all user defined functions

前端 未结 2 1890
一整个雨季
一整个雨季 2021-01-01 21:06

Is there a command in Haskell which displays (or get as a list of) all the user defined functions which have been loaded/defined in the GHCi? Thanks

2条回答
  •  孤街浪徒
    2021-01-01 21:51

    When in ghci, use :browse or just :bro after loading the file. You may also browse unloaded modules via :browse Foo.Bar.Baz.

提交回复
热议问题