Rich. Cao

Results 4 comments of Rich. Cao

目前来说,是尽量减小内外部对象实现的差异性。Array类型,内外部通用的接口已经做到了兼容。但外部调用内部数组的`.entries()`方法得到还是内部模拟的`MIterable`,开发者在使用的时候要避免这种情况。本来在内部生成的非纯数据类型的对象,都不应该交给外部使用。内外部通信传递的,应该是完全封装好的类(类方法的实现全部内聚,如果向外部返回的话,也是返回数据对象),或者纯数据对象。

- [x] 修正for循环逻辑,保证每次循环body内部数据都是新的,保证程序正确执行结果 - [ ] 优化,不要每次都创建closure,只更新scope

> Which project is that on? Are you using the `aes` or another RustCrypto crate? i found how to reappear it. ``` cargo new hello ``` and then this simple...