KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
ToStruct.jl
★ 15
Open GitHub ↗
Easy way to convert dict to struct
Download README (.md)
Explore Similar Repositories
pc2pix
:
Keras code of my 2019 CVPR Workshop paper "A Conditional Generative Adversarial Network for Rendering Point Clouds"
UnityPatrolSystem
:
Basic Point/Area System for NavMesh Navigation
markdown-formatter
:
A markdown formatter intended for writing specifications
readPL4
:
Describe and read ATP's PL4 binary data file format by means of reverse engineering.
recording
:
学习笔记
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ToStruct.jl
?
Download (.md)
# ToStruct.jl Easy way to convert dict to struct ## Installation ```julia using Pkg Pkg.add("ToStruct) ``` ## Usage ```julia using ToStruct struct Foo i::Int s::String end struct Bar foo::Foo end x = Dict("foo" => Dict("i" => 1, "s" => "hello")) ToStruct.tostruct(Bar, x) == Bar(Foo(1, "hello")) # true ```