set-car!, set-cdr! unbound in racket?

匿名 (未验证) 提交于 2019-12-03 01:46:01

问题:

I am just trying to do very simple code with set-car! and set-cdr! in racket, but I got the error: expand: unbound identifier in module in: set-car! and expand: unbound identifier in module in: set-cdr!

Aren't they defined in racket? Could anyone help?

回答1:

You need to import mutable-pairs-6, like this:

(require rnrs/mutable-pairs-6) 

Those procedures were moved to a different module and renamed to mcons, mcar, mcdr, set-mcar!, set-mcdr!, mlist to emphasize that they operate on mutable data, unlike their immutable counterparts.



回答2:

In Racket (and its predecessor, PLT Scheme, since version 4), cons cells are immutable by default. Most Scheme programs never need to modify cons cells, and having them be immutable allows many optimisations. (For example, list? and length can both be constant-time.)

For cases where mutability is needed, there's mpair (as mentioned), and more usefully, there's boxes.



回答3:

This article tells us why they were removed from Racket



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!