https://github.com/CrucialFlow/HalfIntegers.jl
Number type for Half{<:Integer} values
https://github.com/CrucialFlow/HalfIntegers.jl
Last synced: about 1 year ago
JSON representation
Number type for Half{<:Integer} values
- Host: GitHub
- URL: https://github.com/CrucialFlow/HalfIntegers.jl
- Owner: chakravala
- License: mit
- Created: 2021-03-29T18:59:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T19:27:49.000Z (about 5 years ago)
- Last Synced: 2024-05-09T23:42:34.496Z (about 2 years ago)
- Language: Julia
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HalfIntegers.jl
Number type for `Half{<:Integer}` values:
```Julia
julia> Half(3) == 1.5
true
julia> Half(3) + Half(1)
2.0
julia> Half(3) + 1
2.5
```