jolestar
jolestar
# 🐛 Bug This issue was first reported in #95. I gave a minimalist Move example here to reproduce the bug, and Let's see if any developers are interested in...
# 🚀 Feature Request ## Motivation Currently, Move's structs use implicit visibility, e.g. ```rust struct Foo{ f1: u64, } ``` is equivalent to. ```rust public struct Foo{ private f1: u64,...
# 🚀 Feature Request ## Motivation I have mentioned the idea of TypeTable in the documentation of Table, and I describe it in more detail here. According to the implementation...
see https://github.com/apache/commons-pool/blob/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
# 🐛 Bug ## To reproduce **Code snippet to reproduce** ```rust address 0x2 { module Test { public fun test( max: u64, ): bool { let index = 0; while...
# 🚀 Feature Request ## Motivation Currently, Move's structs use implicit visibility, e.g. ```rust struct Foo{ f1: u64, } ``` is equivalent to. ```rust public struct Foo{ private f1: u64,...
# 🚀 Feature Request ## Motivation I have mentioned the idea of TypeTable in the documentation of Table, and I describe it in more detail here. According to the implementation...
# 🚀 Feature Request ## Motivation Sometimes, We need to know the Generic Type variable's real type, and then do some logic dispatch by the type. For example: if(Type::type_of(token) ==...
# 🚀 Feature Request ## Motivation Now we have several Blockchain projects using Move, but it is hard to share Move libraries between different blockchains. Perhaps the ideal way of...
## Pull request type Please check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) -...