方案:如何检查是否无效

发布于 2024-10-10 01:39:57 字数 228 浏览 0 评论 0原文

我收到此错误:

cdr: expects argument of type <pair>; given #<void>

并检查 (null? argument) 是否不起作用
我搜索了很多 void? function ,但我能找到任何东西 所以,有什么想法吗:)
预先感谢一百万

I get this error :

cdr: expects argument of type <pair>; given #<void>

and checking if (null? argument) isn't working
I searched alot for void? function , but I could find anything
so , any ideas ppl :)
thanks a million in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

給妳壹絲溫柔 2024-10-17 01:39:57

只需使用 pair? 看看是否可以 cdr 它。没有针对 void 的具体检查,因为它本质上是一种幻像类型。

Just use pair? to see if you can cdr it. There is no specific check for void, since it's essentially a phantom type.

北斗星光 2024-10-17 01:39:57

克里斯的回答很好,因为您确实想检查 cdr 的对,但为了将来的参考,您可以执行 (eq? (void) (void)) if ( void) 可用,或者如果您想定义自己的 (void)(eq? (if #f #t) (if #f #t)) >。

Chris's answer is good because you really want to be checking for a pair to cdr, but for future reference, you may be able to do (eq? (void) (void)) if (void) is available or (eq? (if #f #t) (if #f #t)) if you want to define your own (void).

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