在方案中查找过程的文本

发布于 2024-07-24 12:09:31 字数 257 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

溺深海 2024-07-31 12:09:31

在我所知道的任何方案中都不是默认的。 您可以做的是定义一个宏,它执行“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.

征﹌骨岁月お 2024-07-31 12:09:31

没有可靠、便携的方法来做到这一点。

There's no reliable, portable way to do this.

素食主义者 2024-07-31 12:09:31

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 apply cddr to to get a list of the function's expressions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文