Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix struct type for number #100

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/StructTypes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ Similarly for serializing, `Float64(x::T)` will first be called before serializi
"""
struct NumberType <: InterfaceType end

StructType(::Type{<:Number}) = NumberType()
StructType(::Type{<:Real}) = NumberType()
numbertype(::Type{T}) where {T <: Real} = T
numbertype(x) = Float64

Expand Down
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -855,4 +855,8 @@ StructTypes.@register_struct_subtype Vehicle2 Truck2
@test StructTypes.lowertype(Car2) === typeof(nt)
@test typeof(car) == Car2
@test car.make == "Mercedes-Benz"
end
end

@testset "struct type on complex" begin
@test StructTypes.StructType(ComplexF64) == StructTypes.Struct()
end
Loading