Abstract Types Convertion

Oh, sure. You’re right.

julia> rating
ContextCF.ContextRating{Int64}(2, Dict{Symbol,Any}(:isWeekend=>true,:notWeekend=>false))

julia> arr = Persa.AbstractRating{Int}[]
0-element Array{Persa.AbstractRating{Int64},1}

julia> push!(arr,rating)
1-element Array{Persa.AbstractRating{Int64},1}:
 ContextCF.ContextRating{Int64}(2, Dict{Symbol,Any}(:isWeekend=>true,:notWeekend=>false))

Sounds like i need to explicity pass the Type, even though Int is a subtype of number, i guess.