Update Transpiler
parent
8dd7f3253d
commit
2d4b9e0fd2
|
|
@ -15,12 +15,18 @@ Features
|
|||
- Create wrapper class for single file enum `enum RJ_TriggerMode` to `class_name RJ_TriggerModeEnums`
|
||||
- Create prefixed names for Rokojori Object Types
|
||||
|
||||
### **C# System Types**
|
||||
### **C# List/Array**
|
||||
- List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc
|
||||
- Dictionary<K,V> => Dictionary[K,V]
|
||||
- HashSet<K> => Dictionary[K,true]
|
||||
- string: `Length` to `length()`
|
||||
|
||||
### **C# Dictionary**
|
||||
- Dictionary<K,V> => Dictionary[K,V]
|
||||
|
||||
### **C# HashSet**
|
||||
- HashSet<K> => Dictionary[K,true]
|
||||
|
||||
### **C# String**
|
||||
- string: `Length` to `length()`
|
||||
- Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s`
|
||||
|
||||
### **Math**
|
||||
- float.MaxValue converted to value
|
||||
|
|
|
|||
Loading…
Reference in New Issue