在方案中查找过程的文本
ipython
python shell 有一个很棒的功能,您可以输入:
foo??
并查看函数 foo
的文本。
方案(特别是麻省理工学院方案)有类似的东西吗?
我希望能够说
(define (foo x) (* xx))
并稍后查看(甚至操作)列表 (* xx)
。
有没有办法做到这一点?
The ipython
python shell has a wonderful feature, whereby you can type:
foo??
and see the text of function foo
.
Does scheme (in particular, MIT scheme), have anything like this?
I want to be able to say
(define (foo x) (* x x))
and later view (or even operate on) the list (* x x)
.
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在我所知道的任何方案中都不是默认的。 您可以做的是定义一个宏,它执行“define”的功能,并将函数体存储在哈希表或列表或其他任何内容中。 当然,这只适用于您控制的代码。
Not by default in any Scheme I know. What you can do is define a macro that does what "define" does and in addition stores the body of the function in a hash table or an alist or whatever. That will only work on code that you control, of course.
没有可靠、便携的方法来做到这一点。
There's no reliable, portable way to do this.
Schema 函数的一般结构为
(define (;... )...)
。 扩展 Mark Probst 的建议,您可以定义一个宏来定义函数的引用版本,然后您可以应用 cddr 来获取函数表达式的列表。The general structure of a Scheme function is
(define (<name> <arg1> <arg2> ... ) <expr1> <expr2> ... <exprn>)
. Extending Mark Probst's suggestion, you could define a macro that defines a quoted version of the function, which you could then applycddr
to to get a list of the function's expressions.