https://github.com/beastyblacksmith/protostructs.jl
Easy prototyping of structs
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
2 of 7 committers (28.6%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.0%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Easy prototyping of structs
Basic Info
- Host: GitHub
- Owner: BeastyBlacksmith
- License: mit
- Language: Julia
- Default Branch: master
- Size: 57.6 KB
Statistics
- Stars: 96
- Watchers: 1
- Forks: 5
- Open Issues: 6
- Releases: 11
Topics
Metadata Files
README.md
ProtoStructs.jl
You are developing a new datastructure and are tired of restarting everytime you change your mind?
ProtoStructs lets you have structs which behave like they would have been redefined.
Here is how it works:
```julia using ProtoStructs
@proto @kwdef struct DevType{T} a::T = 1 b::Float64 = 2.0 c end a = DevType(a=1, b=2.0, c="3") b = DevType(c=:boo) c = DevType(2, 4.0, nothing)
@proto @kwdef mutable struct DevType{T1, T2} a::T1 = 1 b::T2 = 2.0 c end a = DevType(a=1, b=2.0, c="3") b = DevType(c=:boo) c = DevType(2, 4.0, nothing) ```
Redefine at will, but remove the @proto macro after developing to ensure correctness and improve performance of your code.
For julia VERSION < v"1.8" there is also Redef.
Owner
- Name: Simon Christ
- Login: BeastyBlacksmith
- Kind: user
- Location: Hannover
- Company: Leibniz Universität Hannover
- Repositories: 7
- Profile: https://github.com/BeastyBlacksmith
GitHub Events
Total
- Create event: 3
- Commit comment event: 2
- Release event: 1
- Issues event: 2
- Watch event: 5
- Delete event: 2
- Issue comment event: 5
- Push event: 4
- Pull request event: 5
Last Year
- Create event: 3
- Commit comment event: 2
- Release event: 1
- Issues event: 2
- Watch event: 5
- Delete event: 2
- Issue comment event: 5
- Push event: 4
- Pull request event: 5
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Simon Christ | c****t@c****e | 34 |
| Tortar | 6****r | 11 |
| Simon Christ | S****t@m****e | 8 |
| dependabot[bot] | 4****] | 5 |
| Gaurav Arya | g****2@g****m | 2 |
| Steffen | s****r@w****e | 1 |
| Julia TagBot | 5****t | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 18
- Total pull requests: 26
- Average time to close issues: 12 months
- Average time to close pull requests: 5 days
- Total issue authors: 9
- Total pull request authors: 7
- Average comments per issue: 2.11
- Average comments per pull request: 2.46
- Merged pull requests: 23
- Bot issues: 0
- Bot pull requests: 5
Past Year
- Issues: 4
- Pull requests: 3
- Average time to close issues: 21 days
- Average time to close pull requests: 1 day
- Issue authors: 4
- Pull request authors: 3
- Average comments per issue: 1.5
- Average comments per pull request: 3.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 1
Top Authors
Issue Authors
- BeastyBlacksmith (7)
- Tortar (3)
- MilesCranmer (1)
- SteffenPL (1)
- sivark (1)
- jonniediegelman (1)
- zot (1)
- FelixNoessler (1)
- lassepe (1)
- JuliaTagBot (1)
Pull Request Authors
- Tortar (14)
- dependabot[bot] (8)
- BeastyBlacksmith (4)
- gaurav-arya (4)
- zot (1)
- SteffenPL (1)
- JuliaTagBot (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- julia 14 total
- Total dependent packages: 1
- Total dependent repositories: 0
- Total versions: 12
juliahub.com: ProtoStructs
Easy prototyping of structs
- Documentation: https://docs.juliahub.com/General/ProtoStructs/stable/
- License: MIT
-
Latest release: 1.2.1
published over 1 year ago
Rankings
Dependencies
- JuliaRegistries/TagBot v1 composite
- actions/checkout v4 composite
- codecov/codecov-action v3 composite
- julia-actions/julia-buildpkg v1 composite
- julia-actions/julia-processcoverage v1 composite
- julia-actions/julia-runtest v1 composite
- julia-actions/setup-julia v1 composite